X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=blobdiff_plain;f=libavcodec%2Fhevc.h;h=ebe978b3292e1e99b04fb9cdc9094babe06fb10c;hp=accfcb61073a2bd7e0639e22fa3f1c7196fab459;hb=a1c2b48018b09d2613f075ec0748c95bd520ac00;hpb=b25e84b7399bd91605596b67d761d3464dbe8a6e diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index accfcb6107..ebe978b329 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -463,7 +463,7 @@ typedef struct HEVCSPS { } HEVCSPS; typedef struct HEVCPPS { - int sps_id; ///< seq_parameter_set_id + unsigned int sps_id; ///< seq_parameter_set_id uint8_t sign_data_hiding_flag; @@ -712,8 +712,7 @@ typedef struct HEVCNAL { struct HEVCContext; typedef struct HEVCPredContext { - void (*intra_pred)(struct HEVCContext *s, int x0, int y0, - int log2_size, int c_idx); + void (*intra_pred[4])(struct HEVCContext *s, int x0, int y0, int c_idx); void (*pred_planar[4])(uint8_t *src, const uint8_t *top, const uint8_t *left, ptrdiff_t stride);