summaryrefslogtreecommitdiffstats
path: root/audio/decode
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-11 22:06:58 +0100
committerwm4 <wm4@nowhere>2016-02-11 22:06:58 +0100
commit6eae6a785c5060587517197ab05f7e19b54972df (patch)
treee04e3320a02241869f172cad4480fbe94c79d7b7 /audio/decode
parent166fa30f4b4354afeb032a9630efa6784b8e6578 (diff)
downloadmpv-6eae6a785c5060587517197ab05f7e19b54972df.tar.bz2
mpv-6eae6a785c5060587517197ab05f7e19b54972df.tar.xz
ad_lavc: fix --ad-lavc-threads range
The code is shared with the --vd-lavc-threads option, so using 0 for auto-detection just works. But no, this is not useful. Just change it for orthogonality.
Diffstat (limited to 'audio/decode')
-rw-r--r--audio/decode/ad_lavc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c
index 3c17d0d9bb..edc9f3c0f0 100644
--- a/audio/decode/ad_lavc.c
+++ b/audio/decode/ad_lavc.c
@@ -59,7 +59,7 @@ const struct m_sub_options ad_lavc_conf = {
.opts = (const m_option_t[]) {
OPT_FLOATRANGE("ac3drc", ac3drc, 0, 0, 6),
OPT_FLAG("downmix", downmix, 0),
- OPT_INTRANGE("threads", threads, 0, 1, 16),
+ OPT_INTRANGE("threads", threads, 0, 0, 16),
OPT_KEYVALUELIST("o", avopts, 0),
{0}
},