Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-01-18 00:28:46 +0300
committerAnton Khirnov <anton@khirnov.net>2015-03-21 13:27:12 +0300
commit5355ed6b20e941430c4f8fb82644e87a65366d61 (patch)
tree7ff64ca4f9c5a91c4a0b85290a7444c4b12d733e /libavcodec/h264_mvpred.h
parent06789ad3b71296a9e2fbd0278632d97a5d9af8d7 (diff)
h264: move {prev,next}_mb_skipped into the per-slice context
Diffstat (limited to 'libavcodec/h264_mvpred.h')
-rw-r--r--libavcodec/h264_mvpred.h2
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 */