From 44b22bba422b2457e2cfe8aad796817bc8ab220f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 22 Feb 2014 02:55:55 +0100 Subject: [PATCH] avcodec/h264_ps: fix printed num_reorder_frames value Signed-off-by: Michael Niedermayer --- libavcodec/h264_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index 91d73ccbdb..603f1681e3 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -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; -- 2.11.0