diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-04-19 10:02:41 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-04-19 10:02:41 +0000 |
commit | 98d12b09aff3f34d42a91db6a60452955e621494 (patch) | |
tree | 14f8cd0ffc52ef43dd0a39c7501a9aff5889650f | |
parent | f42635f558c025649e130e7385b85f198ca639a4 (diff) | |
download | ffmpeg-98d12b09aff3f34d42a91db6a60452955e621494.tar.gz |
move declaration to mov.h
Originally committed as revision 5299 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 1 | ||||
-rw-r--r-- | libavformat/mov.h | 1 | ||||
-rw-r--r-- | libavformat/movenc.c | 3 |
3 files changed, 1 insertions, 4 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 6863f39250..b503d2ccf5 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -382,7 +382,6 @@ static int ff_mov_lang_to_iso639(int code, char *to) return 1; } -extern int ff_mov_iso639_to_lang(const char *lang, int mp4); /* for movenc.c */ int ff_mov_iso639_to_lang(const char *lang, int mp4) { int i, code = 0; diff --git a/libavformat/mov.h b/libavformat/mov.h index e7a999b56a..8b87c41afa 100644 --- a/libavformat/mov.h +++ b/libavformat/mov.h @@ -3,6 +3,7 @@ /* mov.c */ extern const CodecTag ff_mov_obj_type[]; +extern int ff_mov_iso639_to_lang(const char *lang, int mp4); typedef struct Time2Sample{ int count; diff --git a/libavformat/movenc.c b/libavformat/movenc.c index af007ba8cc..f59ea250d7 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -76,9 +76,6 @@ typedef struct MOVContext { static int mov_write_esds_tag(ByteIOContext *pb, MOVTrack* track); -/* output language code from iso639 language name */ -extern int ff_mov_iso639_to_lang(const char *lang, int mp4); - //FIXME supprt 64bit varaint with wide placeholders static offset_t updateSize (ByteIOContext *pb, offset_t pos) { |