summaryrefslogtreecommitdiff
path: root/libavfilter/af_volume.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-18 12:24:41 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-18 12:38:38 +0100
commit9e526213a27f803f9f0d9682489655a1aef0feff (patch)
tree4f53152bde7b083e777681f9fdb9ff11afe2cec5 /libavfilter/af_volume.h
parentaa97223f14a1aad2a54fc87dd196c2c5e6ba6f40 (diff)
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.h2
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;