From 3fa100244fb95ae3730e67d0b05bdc328a1d0a7b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 30 Sep 2012 14:05:04 +0000 Subject: [PATCH] flac: use get_bits_longlong() Signed-off-by: Paul B Mahol --- libavcodec/flac.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/flac.c b/libavcodec/flac.c index a1ae718992..b07e4f8705 100644 --- a/libavcodec/flac.c +++ b/libavcodec/flac.c @@ -206,8 +206,7 @@ void avpriv_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo * avctx->sample_rate = s->samplerate; avctx->bits_per_raw_sample = s->bps; - s->samples = get_bits_long(&gb, 32) << 4; - s->samples |= get_bits(&gb, 4); + s->samples = get_bits_longlong(&gb, 36); skip_bits_long(&gb, 64); /* md5 sum */ skip_bits_long(&gb, 64); /* md5 sum */