aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Mitrofanov <BugMaster@narod.ru>2017-06-13 23:37:29 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-20 03:03:12 +0200
commitac86dc7716bf47045d6e64982b38a153a9b073ec (patch)
tree95389ce124973a3bd9fdc01f2152bc1baf19f703
parent8ead0d3806743a5b57d51bf89bcd9a349813396f (diff)
downloadffmpeg-ac86dc7716bf47045d6e64982b38a153a9b073ec.tar.gz
avcodec/h264_mb: Fix 8x8dct in lossless for new versions of x264
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 06dda70f1e7c69a3b1684af5e6930431c62c527a) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/h264_mb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_mb.c b/libavcodec/h264_mb.c
index e33a59e4ca..4ae56ae8c2 100644
--- a/libavcodec/h264_mb.c
+++ b/libavcodec/h264_mb.c
@@ -636,7 +636,7 @@ static av_always_inline void hl_decode_mb_predict_luma(const H264Context *h,
uint8_t *const ptr = dest_y + block_offset[i];
const int dir = sl->intra4x4_pred_mode_cache[scan8[i]];
if (transform_bypass && h->ps.sps->profile_idc == 244 && dir <= 1) {
- if (h->sei.unregistered.x264_build != -1) {
+ if (h->sei.unregistered.x264_build < 151U) {
h->hpc.pred8x8l_add[dir](ptr, sl->mb + (i * 16 + p * 256 << pixel_shift), linesize);
} else
h->hpc.pred8x8l_filter_add[dir](ptr, sl->mb + (i * 16 + p * 256 << pixel_shift),