diff options
Diffstat (limited to 'libavcodec/flac.c')
-rw-r--r-- | libavcodec/flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c index 3b803fedb7..f767f6b367 100644 --- a/libavcodec/flac.c +++ b/libavcodec/flac.c @@ -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 */ |