summaryrefslogtreecommitdiff
path: root/libavformat/isom.h
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-08-01 14:58:15 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-08-01 14:58:15 +0000
commite40ee6a268df9545f8c00fec4400a6850723bfe8 (patch)
treedeb9b8b3ef501d8490401315a7fa1230d23c8b62 /libavformat/isom.h
parent986c2ccb198135c59341751a1ae554065df5e363 (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.h15
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 */