[FFmpeg-cvslog] avcodec/h264_ps: fix printed num_reorder_frames value
Michael Niedermayer
git at videolan.org
Sat Feb 22 04:23:09 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Feb 22 02:55:55 2014 +0100| [44b22bba422b2457e2cfe8aad796817bc8ab220f] | committer: Michael Niedermayer
avcodec/h264_ps: fix printed num_reorder_frames value
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=44b22bba422b2457e2cfe8aad796817bc8ab220f
---
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 91d73cc..603f168 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;
More information about the ffmpeg-cvslog
mailing list