diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-23 00:35:50 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-11-01 11:29:18 -0400 |
commit | 4e13e50432bd1c1a89f626f8196b55a0302c8f19 (patch) | |
tree | b31704f21457306de20f5e717d1d2ef3e199895b /libavcodec/ra288.c | |
parent | 6159f6436495ed8859fe9d32c4c2c1a2eb4c1e91 (diff) | |
download | ffmpeg-4e13e50432bd1c1a89f626f8196b55a0302c8f19.tar.gz |
ra288dec: set channel layout
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 1d02c7bf41..e080d2beac 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/audioconvert.h" #include "libavutil/float_dsp.h" #include "avcodec.h" #define BITSTREAM_READER_LE @@ -61,7 +62,11 @@ typedef struct { static av_cold int ra288_decode_init(AVCodecContext *avctx) { RA288Context *ractx = avctx->priv_data; - avctx->sample_fmt = AV_SAMPLE_FMT_FLT; + + avctx->channels = 1; + avctx->channel_layout = AV_CH_LAYOUT_MONO; + avctx->sample_fmt = AV_SAMPLE_FMT_FLT; + avpriv_float_dsp_init(&ractx->fdsp, avctx->flags & CODEC_FLAG_BITEXACT); avcodec_get_frame_defaults(&ractx->frame); |