Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-08 17:39:11 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-12-08 17:53:01 +0400
commit7efee140d7d6fe197a73a178314eacd330a8cc77 (patch)
treed6912401d0863841af04daad31c8815b7df4f9c8 /libavcodec/tak.c
parentb2b12a1022bd7ed80c84961c3e69c6bd47b1fec8 (diff)
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.c2
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;