As reported on:
http://www.mail-archive.com/linux-media@vger.kernel.org/msg64804.html
by Huey-Horng Yo <hiroshiyui@gmail.com>, the proper handling for 0x14
region code is UTF-16BE. Fix it, in order to get the proper channel
names.
Reported-by: Huey-Horng Yo <hiroshiyui@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
case 0x11: type = "ISO-10646"; break;
case 0x12: type = "ISO-2022-KR"; break;
case 0x13: type = "GB2312"; break;
- case 0x14: type = "BIG5"; break;
+ case 0x14: type = "UTF-16BE"; break;
case 0x15: type = "ISO-10646/UTF-8"; break;
case 0x10: /* ISO8859 */
if (len < 2)