charset_conv: support minimum compatibility to utf8:... syntax

Because it's the most commonly used one, and trivial to support.
This commit is contained in:
wm4 2017-01-22 13:06:36 +01:00
parent 73858bb0cc
commit 310671e91a
1 changed files with 5 additions and 1 deletions

View File

@ -106,7 +106,11 @@ const char *mp_charset_guess(void *talloc_ctx, struct mp_log *log, bstr buf,
{
mp_err(log, "This syntax for the --sub-codepage option was deprecated "
"and has been removed.\n");
user_cp = "";
if (strncasecmp(user_cp, "utf8:", 5) == 0) {
user_cp = user_cp + 5;
} else {
user_cp = "";
}
}
if (user_cp[0] == '+') {