1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

move declaration to mov.h

Originally committed as revision 5299 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-04-19 10:02:41 +00:00
parent f42635f558
commit 98d12b09af
3 changed files with 1 additions and 4 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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)
{