Browse Source

avcodec/h264_ps: fix printed num_reorder_frames value

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
44b22bba42
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_ps.c

+ 1
- 1
libavcodec/h264_ps.c View File

@@ -554,7 +554,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h)
sps->timing_info_present_flag ? sps->num_units_in_tick : 0,
sps->timing_info_present_flag ? sps->time_scale : 0,
sps->bit_depth_luma,
h->sps.bitstream_restriction_flag ? sps->num_reorder_frames : -1
sps->bitstream_restriction_flag ? sps->num_reorder_frames : -1
);
}
sps->new = 1;


Loading…
Cancel
Save