From a1c2b48018b09d2613f075ec0748c95bd520ac00 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 17 May 2014 20:41:22 +0200 Subject: hevc: templatize intra_pred --- libavcodec/hevc.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libavcodec/hevc.h') 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); -- cgit v1.2.3