diff options
author | Ivan Schreter <schreter@gmx.net> | 2009-02-18 23:25:59 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-02-18 23:25:59 +0000 |
commit | 24a414e0fa42a0da5b3ecc80a8d5b281ddefdb24 (patch) | |
tree | 01ec415a5d5e050146b58aa653820e3e5c9e157d /libavcodec/h264.c | |
parent | 15239b7fcc09ac520f977851cae8df12d5c361ec (diff) | |
download | ffmpeg-24a414e0fa42a0da5b3ecc80a8d5b281ddefdb24.tar.gz |
Store CPB count in the context.
Patch by Ivan Schreter, schreter gmx net
Originally committed as revision 17439 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 29493a3472..b64a527677 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -6925,6 +6925,7 @@ static inline int decode_hrd_parameters(H264Context *h, SPS *sps){ sps->cpb_removal_delay_length = get_bits(&s->gb, 5) + 1; sps->dpb_output_delay_length = get_bits(&s->gb, 5) + 1; sps->time_offset_length = get_bits(&s->gb, 5); + sps->cpb_cnt = cpb_count; return 0; } |