diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-08 14:39:11 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-08 14:53:01 +0100 |
commit | 7efee140d7d6fe197a73a178314eacd330a8cc77 (patch) | |
tree | d6912401d0863841af04daad31c8815b7df4f9c8 /libavformat | |
parent | b2b12a1022bd7ed80c84961c3e69c6bd47b1fec8 (diff) | |
download | ffmpeg-7efee140d7d6fe197a73a178314eacd330a8cc77.tar.gz |
get_bits: rename get_bits_longlong to get_bits64
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/takdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/takdec.c b/libavformat/takdec.c index a5290173d8..86d98803ab 100644 --- a/libavformat/takdec.c +++ b/libavformat/takdec.c @@ -134,7 +134,7 @@ static int tak_read_header(AVFormatContext *s) if (size != 11) return AVERROR_INVALIDDATA; tc->mlast_frame = 1; - tc->data_end = get_bits_longlong(&gb, TAK_LAST_FRAME_POS_BITS) + + tc->data_end = get_bits64(&gb, TAK_LAST_FRAME_POS_BITS) + get_bits(&gb, TAK_LAST_FRAME_SIZE_BITS); av_freep(&buffer); } else if (type == TAK_METADATA_ENCODER) { |