summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-22 02:55:55 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-22 02:55:55 +0100
commit44b22bba422b2457e2cfe8aad796817bc8ab220f (patch)
tree3043f06ee613f8965ef2b1e4c1b203e1a3ea7c15
parent8c55ff393340998faae887dfac19e7ef128e1e58 (diff)
avcodec/h264_ps: fix printed num_reorder_frames value
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/h264_ps.c2
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;