summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-10-01 13:21:56 -0500
committerDudemanguy <random342@airmail.cc>2023-10-07 02:41:27 +0000
commitda4f11803febd0e75d3d62a965e17731bd328506 (patch)
tree1005b2176a25dd45080f6b699697fa6399f96fb1 /demux
parent50b23a8c4493517fa2130250d22d94bca4e27804 (diff)
downloadmpv-da4f11803febd0e75d3d62a965e17731bd328506.tar.bz2
mpv-da4f11803febd0e75d3d62a965e17731bd328506.tar.xz
demux: change the default of metadata-codepage to auto
There's really no reason not to do this especially since sub-codepage already defaults to auto. Also change logging in charset_conv since telling us that the data is UTF-8 if the passed codepage value is "auto" or "utf-8" is really not useful information (that's the expectation).
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/demux.c b/demux/demux.c
index d3da4a0fd1..e0b585e376 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -142,7 +142,7 @@ const struct m_sub_options demux_conf = {
[STREAM_VIDEO] = 1,
[STREAM_AUDIO] = 10,
},
- .meta_cp = "utf-8",
+ .meta_cp = "auto",
},
.get_sub_options = get_demux_sub_opts,
};