Browse Source

get_bits: rename get_bits_longlong to get_bits64

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
7efee140d7
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      libavcodec/flac.c
  2. +1
    -1
      libavcodec/get_bits.h
  3. +1
    -1
      libavcodec/tak.c
  4. +1
    -1
      libavformat/takdec.c

+ 1
- 1
libavcodec/flac.c View File

@@ -225,7 +225,7 @@ void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *
avctx->bits_per_raw_sample = s->bps;
ff_flac_set_channel_layout(avctx);

s->samples = get_bits_longlong(&gb, 36);
s->samples = get_bits64(&gb, 36);

skip_bits_long(&gb, 64); /* md5 sum */
skip_bits_long(&gb, 64); /* md5 sum */


+ 1
- 1
libavcodec/get_bits.h View File

@@ -320,7 +320,7 @@ static inline unsigned int get_bits_long(GetBitContext *s, int n)
/**
* Read 0-64 bits.
*/
static inline uint64_t get_bits_longlong(GetBitContext *s, int n)
static inline uint64_t get_bits64(GetBitContext *s, int n)
{
if (n <= 32)
return get_bits_long(s, n);


+ 1
- 1
libavcodec/tak.c View File

@@ -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;


+ 1
- 1
libavformat/takdec.c View File

@@ -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) {


Loading…
Cancel
Save