diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-29 19:22:54 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-29 19:22:54 +0100 |
commit | fc9ced41e48f7a10f0f472766e21d3103b93cc9a (patch) | |
tree | 3a3cdb3272219e389e45f180229d95db36a7df3d /libavcodec/twinvq.h | |
parent | 2336c76d5a6e025012b8526606669670d160a476 (diff) | |
download | ffmpeg-fc9ced41e48f7a10f0f472766e21d3103b93cc9a.tar.gz |
avcodec/twinvq: Use avpriv_float_dsp_alloc()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/twinvq.h')
-rw-r--r-- | libavcodec/twinvq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/twinvq.h b/libavcodec/twinvq.h index c4e9688d46..ae0f595d3c 100644 --- a/libavcodec/twinvq.h +++ b/libavcodec/twinvq.h @@ -136,7 +136,7 @@ typedef struct TwinVQModeTab { typedef struct TwinVQContext { AVCodecContext *avctx; - AVFloatDSPContext fdsp; + AVFloatDSPContext *fdsp; FFTContext mdct_ctx[3]; const TwinVQModeTab *mtab; |