From 4dbcfa6f95390772b9f79561a1b1e0e305ff1040 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Thu, 10 Jun 2010 16:59:56 +0000 Subject: Set bits_per_raw_sample in the pcm decoder. Originally committed as revision 23566 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/pcm.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec/pcm.c') diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 746a520256..4e86154831 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -227,6 +227,10 @@ static av_cold int pcm_decode_init(AVCodecContext * avctx) } avctx->sample_fmt = avctx->codec->sample_fmts[0]; + + if (avctx->sample_fmt == SAMPLE_FMT_S32) + avctx->bits_per_raw_sample = av_get_bits_per_sample(avctx->codec->id); + return 0; } -- cgit v1.2.3