diff isom.h @ 1216:fec0a3d5408f libavformat

move common code from mov.c and movenc.c to isom.c
author bcoudurier
date Tue, 01 Aug 2006 14:58:15 +0000
parents mov.h@172781cd7c9d
children 8bf9be9bb107
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/isom.h	Tue Aug 01 14:58:15 2006 +0000
@@ -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 */