summaryrefslogtreecommitdiffstats
path: root/misc/charset_conv.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-10-01 12:12:33 -0500
committerDudemanguy <random342@airmail.cc>2023-10-07 02:41:27 +0000
commita96dd2f5e76c69859caa7b6e34b2fd9fd9e89672 (patch)
tree15d8f87d315235ee80ccc1f76a7a7450e6d9f5ce /misc/charset_conv.c
parente22efe2d221ec668cb362c6ce4e4ebb974bf1ce7 (diff)
downloadmpv-a96dd2f5e76c69859caa7b6e34b2fd9fd9e89672.tar.bz2
mpv-a96dd2f5e76c69859caa7b6e34b2fd9fd9e89672.tar.xz
charset_conv: remove ancient warning about deprecated syntax
wm4 removed this in 4adfde5dd1e67775228a345cea00ea03ba6bc68f and left a warning. Nobody needs to know that enca:pl used to work.
Diffstat (limited to 'misc/charset_conv.c')
-rw-r--r--misc/charset_conv.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/misc/charset_conv.c b/misc/charset_conv.c
index cbd1c70afb..f649057fe8 100644
--- a/misc/charset_conv.c
+++ b/misc/charset_conv.c
@@ -101,18 +101,6 @@ static const char *mp_uchardet(void *talloc_ctx, struct mp_log *log, bstr buf)
const char *mp_charset_guess(void *talloc_ctx, struct mp_log *log, bstr buf,
const char *user_cp, int flags)
{
- if (strcasecmp(user_cp, "enca") == 0 || strcasecmp(user_cp, "guess") == 0 ||
- strcasecmp(user_cp, "uchardet") == 0 || strchr(user_cp, ':'))
- {
- mp_err(log, "This syntax for the --sub-codepage option was deprecated "
- "and has been removed.\n");
- if (strncasecmp(user_cp, "utf8:", 5) == 0) {
- user_cp = user_cp + 5;
- } else {
- user_cp = "";
- }
- }
-
if (user_cp[0] == '+') {
mp_verbose(log, "Forcing charset '%s'.\n", user_cp + 1);
return user_cp + 1;