h264: move reading direct_spatial_mv_pred out of ff_set_ref_count()

It has nothing to do with the reference count and so does not belong in
this function.
This commit is contained in:
Anton Khirnov
2016-03-21 16:25:29 +01:00
parent 8d0cc8ca97
commit e9f884416c
3 changed files with 6 additions and 2 deletions

View File

@@ -117,6 +117,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;