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.h | |
parent | b1540fc8843dfe35b228c733d7aeca2e83ef4739 (diff) | |
download | ffmpeg-31b2262dca9cc77709d20c45610ec8030e7f9257.tar.gz |
wmaenc: use float planar sample format
Diffstat (limited to 'libavcodec/wma.h')
-rw-r--r-- | libavcodec/wma.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/wma.h b/libavcodec/wma.h index 15838eb685..f81e0950eb 100644 --- a/libavcodec/wma.h +++ b/libavcodec/wma.h @@ -22,6 +22,7 @@ #ifndef AVCODEC_WMA_H #define AVCODEC_WMA_H +#include "libavutil/float_dsp.h" #include "get_bits.h" #include "put_bits.h" #include "dsputil.h" @@ -137,6 +138,7 @@ typedef struct WMACodecContext { float lsp_pow_m_table2[(1 << LSP_POW_BITS)]; DSPContext dsp; FmtConvertContext fmt_conv; + AVFloatDSPContext fdsp; #ifdef TRACE int frame_count; |