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:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-05-17 16:38:08 +0300
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-05-17 16:38:14 +0300
commit7ab2c036b917ad3ecaf245601aeba4316b6604c2 (patch)
treebf9f13cd33e67286a6bc9654a494d5af8ee1a14c /libavcodec/h264_parser.c
parent15ad0232107496c3b12d8aaedfc3398b8cda9ee7 (diff)
parente9f884416c76558098fc1f63825b293956e8483c (diff)
Merge commit 'e9f884416c76558098fc1f63825b293956e8483c'
* commit 'e9f884416c76558098fc1f63825b293956e8483c': h264: move reading direct_spatial_mv_pred out of ff_set_ref_count() Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r--libavcodec/h264_parser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c
index 6cf4a236a0..418fe0a488 100644
--- a/libavcodec/h264_parser.c
+++ b/libavcodec/h264_parser.c
@@ -150,6 +150,9 @@ static int scan_mmco_reset(AVCodecParserContext *s)
if (h->pps.redundant_pic_cnt_present)
get_ue_golomb(&sl->gb); // redundant_pic_count
+ if (sl->slice_type_nos == AV_PICTURE_TYPE_B)
+ get_bits1(&sl->gb); // direct_spatial_mv_pred
+
if (ff_set_ref_count(h, sl) < 0)
return AVERROR_INVALIDDATA;