diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-08-25 13:44:30 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-06 13:23:13 -0400 |
commit | 31b2262dca9cc77709d20c45610ec8030e7f9257 (patch) | |
tree | 4a4d18370b4755a04e2f6d0d2ca5c4e49c2146cf /libavcodec/wma.c | |
parent | b1540fc8843dfe35b228c733d7aeca2e83ef4739 (diff) | |
download | ffmpeg-31b2262dca9cc77709d20c45610ec8030e7f9257.tar.gz |
wmaenc: use float planar sample format
Diffstat (limited to 'libavcodec/wma.c')
-rw-r--r-- | libavcodec/wma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/wma.c b/libavcodec/wma.c index 43714e7c84..f9ba9c3855 100644 --- a/libavcodec/wma.c +++ b/libavcodec/wma.c @@ -89,6 +89,7 @@ int ff_wma_init(AVCodecContext *avctx, int flags2) ff_dsputil_init(&s->dsp, avctx); ff_fmt_convert_init(&s->fmt_conv, avctx); + avpriv_float_dsp_init(&s->fdsp, avctx->flags & CODEC_FLAG_BITEXACT); if (avctx->codec->id == AV_CODEC_ID_WMAV1) { s->version = 1; |