diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-05-17 20:41:22 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-19 07:10:03 +0200 |
commit | a1c2b48018b09d2613f075ec0748c95bd520ac00 (patch) | |
tree | 49de2ee15d4718ddcf9139a87d2be32230bb8f7e /libavcodec/hevc.h | |
parent | 04db5794cd97e4b33ec2f963ef7f967722a456eb (diff) | |
download | ffmpeg-a1c2b48018b09d2613f075ec0748c95bd520ac00.tar.gz |
hevc: templatize intra_pred
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 1197d08193..ebe978b329 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -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); |