summaryrefslogtreecommitdiff
path: root/libavfilter/af_amix.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-05 14:44:05 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-05 14:44:05 +0200
commit98840ee0174b227543f2c85f3df09e97ad4f2577 (patch)
tree80c17ae52b4056988905d00167ad145edfdb1bdf /libavfilter/af_amix.c
parentd46c1c72e4f4e1e0b0659a1ab0f57f7092c638f8 (diff)
parentc7b610aa0b1bac47eea0056b13fe6e982b85844a (diff)
Merge commit 'c7b610aa0b1bac47eea0056b13fe6e982b85844a'
* commit 'c7b610aa0b1bac47eea0056b13fe6e982b85844a': avopt: Explicitly store float/double option defaults in .dbl Conflicts: libavcodec/ac3dec.c libavcodec/libx264.c libavfilter/af_amix.c libavfilter/af_asyncts.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_amix.c')
-rw-r--r--libavfilter/af_amix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c
index 4ba7718981..cfe23159e2 100644
--- a/libavfilter/af_amix.c
+++ b/libavfilter/af_amix.c
@@ -185,7 +185,7 @@ static const AVOption amix_options[] = {
{ "first", "Duration of first input.", 0, AV_OPT_TYPE_CONST, { .i64 = DURATION_FIRST }, INT_MIN, INT_MAX, A|F, "duration" },
{ "dropout_transition", "Transition time, in seconds, for volume "
"renormalization when an input stream ends.",
- OFFSET(dropout_transition), AV_OPT_TYPE_FLOAT, { 2.0 }, 0, INT_MAX, A|F },
+ OFFSET(dropout_transition), AV_OPT_TYPE_FLOAT, { .dbl = 2.0 }, 0, INT_MAX, A|F },
{ NULL },
};