From ebef5da074b7bfd1cf3a9f6e110d71e87eaa1901 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 30 Mar 2015 19:44:52 +0200 Subject: ad_lavc: disable AC3 DRC by default --- audio/decode/ad_lavc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio') diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c index fd09eca0b7..4768349ec3 100644 --- a/audio/decode/ad_lavc.c +++ b/audio/decode/ad_lavc.c @@ -59,7 +59,7 @@ struct ad_lavc_params { const struct m_sub_options ad_lavc_conf = { .opts = (const m_option_t[]) { - OPT_FLOATRANGE("ac3drc", ac3drc, 0, 0, 2), + OPT_FLOATRANGE("ac3drc", ac3drc, 0, 0, 6), OPT_FLAG("downmix", downmix, 0), OPT_INTRANGE("threads", threads, 0, 1, 16), OPT_KEYVALUELIST("o", avopts, 0), @@ -67,7 +67,7 @@ const struct m_sub_options ad_lavc_conf = { }, .size = sizeof(struct ad_lavc_params), .defaults = &(const struct ad_lavc_params){ - .ac3drc = 1., + .ac3drc = 0, .downmix = 1, .threads = 1, }, -- cgit v1.2.3