diff options
author | Yogender Kumar Gupta <yogender.gupta@gmail.com> | 2014-03-18 16:01:15 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-18 20:37:26 +0100 |
commit | 6f7ca1f55be1270e0d7c33409de4473e4dd00add (patch) | |
tree | ebf109047e5c102406ab235df86eb980461a9dd2 /libavcodec/h264pred.h | |
parent | 7ab315ec69018dd38fb851788053a74c5763d26e (diff) | |
download | ffmpeg-6f7ca1f55be1270e0d7c33409de4473e4dd00add.tar.gz |
avcodec/h264: fix Lossless Decoding (Profile 244) for 8x8 Intra Prediction
This is limited to the case where x264_build = -1, to not break x264 decoding
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264pred.h')
-rw-r--r-- | libavcodec/h264pred.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264pred.h b/libavcodec/h264pred.h index 00af03a568..6708292048 100644 --- a/libavcodec/h264pred.h +++ b/libavcodec/h264pred.h @@ -101,6 +101,8 @@ typedef struct H264PredContext { int16_t *block /*align 16*/, ptrdiff_t stride); void(*pred8x8l_add[2])(uint8_t *pix /*align 8*/, int16_t *block /*align 16*/, ptrdiff_t stride); + void(*pred8x8l_filter_add[2])(uint8_t *pix /*align 8*/, + int16_t *block /*align 16*/, int topleft, int topright, ptrdiff_t stride); void(*pred8x8_add[3])(uint8_t *pix /*align 8*/, const int *block_offset, int16_t *block /*align 16*/, ptrdiff_t stride); |