diff movenc.c @ 943:4e7a66723f1d libavformat

mp4 codecs objecttype handling patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com)
author michael
date Sat, 11 Feb 2006 18:27:57 +0000
parents 343ddd5b793c
children 43f85eba04c4
line wrap: on
line diff
--- a/movenc.c	Sat Feb 11 17:44:06 2006 +0000
+++ b/movenc.c	Sat Feb 11 18:27:57 2006 +0000
@@ -20,6 +20,7 @@
 #include "avformat.h"
 #include "avi.h"
 #include "avio.h"
+#include "mov.h"
 
 #undef NDEBUG
 #include <assert.h>
@@ -77,26 +78,6 @@
 /* output language code from iso639 language name */
 extern int ff_mov_iso639_to_lang(const char *lang, int mp4);
 
-const CodecTag ff_mov_obj_type[] = {
-    { CODEC_ID_MPEG4     ,  32 },
-    { CODEC_ID_AAC       ,  64 },
-    { CODEC_ID_MPEG1VIDEO, 106 },
-    { CODEC_ID_MPEG2VIDEO,  96 },//mpeg2 profiles
-    { CODEC_ID_MP2       , 107 },//FIXME mpeg2 mpeg audio -> 105
-    { CODEC_ID_MP3       , 107 },//FIXME mpeg2 mpeg audio -> 105
-    { CODEC_ID_H264      ,  33 },
-    { CODEC_ID_H263      , 242 },
-    { CODEC_ID_H261      , 243 },
-    { CODEC_ID_MJPEG     , 108 },
-    { CODEC_ID_PCM_S16LE , 224 },
-    { CODEC_ID_VORBIS    , 225 },
-    { CODEC_ID_AC3       , 226 },
-    { CODEC_ID_PCM_ALAW  , 227 },
-    { CODEC_ID_PCM_MULAW , 228 },
-    { CODEC_ID_PCM_S16BE , 230 },
-    { 0,0  },
-};
-
 //FIXME supprt 64bit varaint with wide placeholders
 static offset_t updateSize (ByteIOContext *pb, offset_t pos)
 {