diff options
author | Baptiste Coudurier | 2006-08-01 14:58:15 +0000 |
---|---|---|
committer | Baptiste Coudurier | 2006-08-01 14:58:15 +0000 |
commit | e40ee6a268df9545f8c00fec4400a6850723bfe8 (patch) | |
tree | deb9b8b3ef501d8490401315a7fa1230d23c8b62 /libavformat/isom.h | |
parent | 986c2ccb198135c59341751a1ae554065df5e363 (diff) |
move common code from mov.c and movenc.c to isom.c
Originally committed as revision 5882 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 15 |
1 files changed, 15 insertions, 0 deletions
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 */ |