OSDN Git Service

LinGui: add a few srt codesets
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 15 Jul 2009 17:45:58 +0000 (17:45 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 15 Jul 2009 17:45:58 +0000 (17:45 +0000)
endianness matters for utf-16/32.  so add the BE/LE variations.

git-svn-id: svn://localhost/HandBrake/trunk@2695 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/hb-backend.c

index db91998..0a4c58e 100644 (file)
@@ -415,7 +415,11 @@ const gchar *srt_codeset_table[] =
        "UTF-7",
        "UTF-8",
        "UTF-16",
+       "UTF-16LE",
+       "UTF-16BE",
        "UTF-32",
+       "UTF-32LE",
+       "UTF-32BE",
        NULL
 };
 #define        SRT_TABLE_SIZE (sizeof(srt_codeset_table)/ sizeof(char*)-1)