diff options
author | jstebbins <[email protected]> | 2009-07-15 17:45:58 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-15 17:45:58 +0000 |
commit | 32f2eebc48d1ad68e516ed6d0a2e3c7024a8150d (patch) | |
tree | eb80676af01f77dc8213ab9f65596472b20a2e99 /gtk | |
parent | 10842fdfd29f934d72c00ec4ff998f187111ba8a (diff) |
LinGui: add a few srt codesets
endianness matters for utf-16/32. so add the BE/LE variations.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2695 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/hb-backend.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index db9199869..0a4c58ed7 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -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) |