diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-15 20:18:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-15 20:18:02 +0000 |
commit | 7e030c473988277c3830f47438d199ef1c3ec66f (patch) | |
tree | 8d5e13f8d51a2104875f4f9821659d1dfa491e30 | |
parent | e223a3bd38165a336416279edb46173c7c5041dd (diff) | |
download | ffmpeg-7e030c473988277c3830f47438d199ef1c3ec66f.tar.gz |
Clarify which exact variant of ISO 639 is used. (The ISO spec explicitly
requires this to be clear)
Originally committed as revision 18530 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 128ecc5121..8732b56446 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -63,7 +63,7 @@ struct AVFormatContext; * want to store, e.g., the email address of the child of producer Alice * and actor Bob, that could have key=alice_and_bobs_childs_email_address. * 3. A tag whose value is localized for a particular language is appended - * with a dash character ('-') and the ISO 639 3-letter language code. + * with a dash character ('-') and the ISO 639-2/B 3-letter language code. * For example: Author-ger=Michael, Author-eng=Mike * The original/default language is in the unqualified "Author" tag. * A demuxer should set a default if it sets any translated tag. @@ -390,7 +390,7 @@ typedef struct AVStream { int64_t duration; #if LIBAVFORMAT_VERSION_INT < (53<<16) - char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */ + char language[4]; /** ISO 639-2/B 3-letter language code (empty string if undefined) */ #endif /* av_read_frame() support */ |