Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb charset: added back AUTO_POLISH charset selection, fixes #2381
  • Loading branch information
perexg committed Oct 16, 2014
1 parent 954d980 commit e180b8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/input/mpegts/dvb_charset.c
Expand Up @@ -155,6 +155,7 @@ dvb_charset_enum ( void *p )
"UTF-8",
"GB2312",
"UCS2",
"AUTO_POLISH",
};
htsmsg_t *m = htsmsg_create_list();
for ( i = 0; i < ARRAY_SIZE(charsets); i++)
Expand Down
2 changes: 1 addition & 1 deletion src/input/mpegts/dvb_support.c
Expand Up @@ -251,7 +251,7 @@ dvb_get_string
}

// check for automatic polish charset detection
if (dvb_charset && strcmp("PL_AUTO", dvb_charset) == 0) {
if (dvb_charset && strcmp("AUTO_POLISH", dvb_charset) == 0) {
auto_pl_charset = 1;
dvb_charset = NULL;
}
Expand Down

0 comments on commit e180b8d

Please sign in to comment.