diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-18 12:24:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-18 12:38:38 +0100 |
commit | 9e526213a27f803f9f0d9682489655a1aef0feff (patch) | |
tree | 4f53152bde7b083e777681f9fdb9ff11afe2cec5 /libavfilter/af_volume.h | |
parent | aa97223f14a1aad2a54fc87dd196c2c5e6ba6f40 (diff) | |
download | ffmpeg-9e526213a27f803f9f0d9682489655a1aef0feff.tar.gz |
avfilter/af_volume: Use avpriv_float_dsp_alloc()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_volume.h')
-rw-r--r-- | libavfilter/af_volume.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_volume.h b/libavfilter/af_volume.h index e78e042d09..53a328e352 100644 --- a/libavfilter/af_volume.h +++ b/libavfilter/af_volume.h @@ -67,7 +67,7 @@ enum ReplayGainType { typedef struct VolumeContext { const AVClass *class; - AVFloatDSPContext fdsp; + AVFloatDSPContext *fdsp; enum PrecisionType precision; enum EvalMode eval_mode; const char *volume_expr; |