diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-30 21:54:06 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-30 21:54:06 +0000 |
commit | 1c90d2985d5f4ca5dd74459712109b7438e4c9bf (patch) | |
tree | 53f8c6869b2a69b5b0152d47c7bac443a4246425 /libavformat/isom.h | |
parent | 832ec42858430fc9c949fd9bcbac2a8e8e192ee2 (diff) | |
download | ffmpeg-1c90d2985d5f4ca5dd74459712109b7438e4c9bf.tar.gz |
Always consider the mov language code as 4 bytes fixed size and change the
function declaration to reflect this.
Originally committed as revision 21558 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index c8141f13cd..2661e8d620 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -34,8 +34,8 @@ extern const AVCodecTag codec_movvideo_tags[]; extern const AVCodecTag codec_movaudio_tags[]; extern const AVCodecTag ff_codec_movsubtitle_tags[]; -int ff_mov_iso639_to_lang(const char *lang, int mp4); -int ff_mov_lang_to_iso639(unsigned code, char *to); +int ff_mov_iso639_to_lang(const char lang[4], int mp4); +int ff_mov_lang_to_iso639(unsigned code, char to[4]); /* the QuickTime file format is quite convoluted... * it has lots of index tables, each indexing something in another one... |