diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-01-17 22:28:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-21 11:27:12 +0100 |
commit | 5355ed6b20e941430c4f8fb82644e87a65366d61 (patch) | |
tree | 7ff64ca4f9c5a91c4a0b85290a7444c4b12d733e /libavcodec/h264_mvpred.h | |
parent | 06789ad3b71296a9e2fbd0278632d97a5d9af8d7 (diff) | |
download | ffmpeg-5355ed6b20e941430c4f8fb82644e87a65366d61.tar.gz |
h264: move {prev,next}_mb_skipped into the per-slice context
Diffstat (limited to 'libavcodec/h264_mvpred.h')
-rw-r--r-- | libavcodec/h264_mvpred.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_mvpred.h b/libavcodec/h264_mvpred.h index e89e91efd6..8f9932d974 100644 --- a/libavcodec/h264_mvpred.h +++ b/libavcodec/h264_mvpred.h @@ -824,7 +824,7 @@ static void av_unused decode_mb_skip(H264Context *h, H264SliceContext *sl) h->cur_pic.mb_type[mb_xy] = mb_type; h->cur_pic.qscale_table[mb_xy] = sl->qscale; h->slice_table[mb_xy] = h->slice_num; - h->prev_mb_skipped = 1; + sl->prev_mb_skipped = 1; } #endif /* AVCODEC_H264_MVPRED_H */ |