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 /libavcodec/tak.c | |
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 'libavcodec/tak.c')
-rw-r--r-- | libavcodec/tak.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tak.c b/libavcodec/tak.c index 7e1a047a2c..e7fbf6bc54 100644 --- a/libavcodec/tak.c +++ b/libavcodec/tak.c @@ -113,7 +113,7 @@ void avpriv_tak_parse_streaminfo(GetBitContext *gb, TAKStreamInfo *s) skip_bits(gb, TAK_ENCODER_PROFILE_BITS); frame_type = get_bits(gb, TAK_SIZE_FRAME_DURATION_BITS); - s->samples = get_bits_longlong(gb, TAK_SIZE_SAMPLES_NUM_BITS); + s->samples = get_bits64(gb, TAK_SIZE_SAMPLES_NUM_BITS); s->data_type = get_bits(gb, TAK_FORMAT_DATA_TYPE_BITS); s->sample_rate = get_bits(gb, TAK_FORMAT_SAMPLE_RATE_BITS) + TAK_SAMPLE_RATE_MIN; |