diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-22 02:55:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-22 02:55:55 +0100 |
commit | 44b22bba422b2457e2cfe8aad796817bc8ab220f (patch) | |
tree | 3043f06ee613f8965ef2b1e4c1b203e1a3ea7c15 | |
parent | 8c55ff393340998faae887dfac19e7ef128e1e58 (diff) | |
download | ffmpeg-44b22bba422b2457e2cfe8aad796817bc8ab220f.tar.gz |
avcodec/h264_ps: fix printed num_reorder_frames value
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |