summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-11-05 15:31:47 -0600
committerDudemanguy <random342@airmail.cc>2023-12-08 18:14:06 +0000
commit443c2487d7dd1039e297abad6398135b3c463018 (patch)
tree96faabcc0a3bd8c8ace303f4a5bc4e51e533be14 /options
parentce958b77424327a30a3026c226a1db72f26e3543 (diff)
downloadmpv-443c2487d7dd1039e297abad6398135b3c463018.tar.bz2
mpv-443c2487d7dd1039e297abad6398135b3c463018.tar.xz
filter_sdh: add full width parentheses to the enclosures string
Since these are technically parentheses, we'll treat them the same way as normal parenthesis. Fixes #11155.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 84f94c59b7..41cfce7fc0 100644
--- a/options/options.c
+++ b/options/options.c
@@ -272,7 +272,7 @@ const struct m_sub_options mp_sub_filter_opts = {
},
.size = sizeof(OPT_BASE_STRUCT),
.defaults = &(OPT_BASE_STRUCT){
- .sub_filter_SDH_enclosures = "([",
+ .sub_filter_SDH_enclosures = "([\uFF08",
.rf_enable = true,
},
.change_flags = UPDATE_SUB_FILT,