From e40ee6a268df9545f8c00fec4400a6850723bfe8 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 1 Aug 2006 14:58:15 +0000 Subject: move common code from mov.c and movenc.c to isom.c Originally committed as revision 5882 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/isom.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 libavformat/isom.h (limited to 'libavformat/isom.h') diff --git a/libavformat/isom.h b/libavformat/isom.h new file mode 100644 index 0000000000..90a4ed0a37 --- /dev/null +++ b/libavformat/isom.h @@ -0,0 +1,15 @@ +#ifndef FFMPEG_ISOM_H +#define FFMPEG_ISOM_H + +/* isom.c */ +extern const CodecTag ff_mov_obj_type[]; + +int ff_mov_iso639_to_lang(const char *lang, int mp4); +int ff_mov_lang_to_iso639(int code, char *to); + +typedef struct Time2Sample{ + int count; + int duration; +}Time2Sample; + +#endif /* FFMPEG_ISOM_H */ -- cgit v1.2.3