diff options
author | van <[email protected]> | 2008-01-24 20:37:03 +0000 |
---|---|---|
committer | van <[email protected]> | 2008-01-24 20:37:03 +0000 |
commit | 1eb709b91cdf365c9a2775a003505113778c8538 (patch) | |
tree | 3ad9f1734318a8c4116b887f231814a840283be6 /libhb/lang.h | |
parent | 5cb6da2bd49cb0ef605f085eb6a16ec0debda1b8 (diff) |
Add an (optional) iso639_2b field to the language struct so that we will accept either ISO 639-2/T or /B codes in input content (particularly MPEG transport stream PMTs) but will always generate /T codes in mp4s to keep QuickTime happy.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1234 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/lang.h')
-rw-r--r-- | libhb/lang.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/lang.h b/libhb/lang.h index 4e48d2332..36bf2bf1e 100644 --- a/libhb/lang.h +++ b/libhb/lang.h @@ -12,7 +12,8 @@ typedef struct iso639_lang_t char * eng_name; /* Description in English */ char * native_name; /* Description in native language */ char * iso639_1; /* ISO-639-1 (2 characters) code */ - char * iso639_2; /* ISO-639-2 (3 character) code */ + char * iso639_2; /* ISO-639-2/t (3 character) code */ + char * iso639_2b; /* ISO-639-2/b code (if different from above) */ } iso639_lang_t; |