diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-27 17:53:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-27 17:53:08 +0200 |
commit | 23040e2e3dafbe99a37e70c854073a102b8a7f46 (patch) | |
tree | c4492cf2f13743504d6bc50d6e2b7823fde00bb2 /libavcodec/h264_parser.c | |
parent | 3e7db0a9ee758bf0570a141be1fea64f8d9c03db (diff) | |
download | ffmpeg-23040e2e3dafbe99a37e70c854073a102b8a7f46.tar.gz |
h264: use long reading for first_mb_in_slice
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264_parser.c')
-rw-r--r-- | libavcodec/h264_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index 614dad35eb..778ef1efec 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -185,7 +185,7 @@ static inline int parse_nal_units(AVCodecParserContext *s, s->key_frame = 1; /* fall through */ case NAL_SLICE: - get_ue_golomb(&h->s.gb); // skip first_mb_in_slice + get_ue_golomb_long(&h->s.gb); // skip first_mb_in_slice slice_type = get_ue_golomb_31(&h->s.gb); s->pict_type = golomb_to_pict_type[slice_type % 5]; if (h->sei_recovery_frame_cnt >= 0) { |