summaryrefslogtreecommitdiff
path: root/libavcodec/hevc.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-05-17 20:41:22 +0200
committerAnton Khirnov <anton@khirnov.net>2014-05-19 07:10:03 +0200
commita1c2b48018b09d2613f075ec0748c95bd520ac00 (patch)
tree49de2ee15d4718ddcf9139a87d2be32230bb8f7e /libavcodec/hevc.h
parent04db5794cd97e4b33ec2f963ef7f967722a456eb (diff)
hevc: templatize intra_pred
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h3
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);