OSDN Git Service

Add ProRes FOURCCs to isom.c
authorTomas Härdin <tomas.hardin@codemill.se>
Thu, 3 Feb 2011 09:50:50 +0000 (10:50 +0100)
committerMans Rullgard <mans@mansr.com>
Thu, 3 Feb 2011 11:40:56 +0000 (11:40 +0000)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavformat/isom.c

index 71a97b3..89b352c 100644 (file)
@@ -195,6 +195,12 @@ const AVCodecTag codec_movvideo_tags[] = {
     { CODEC_ID_SGI,   MKTAG('s', 'g', 'i', ' ') }, /* SGI  */
     { CODEC_ID_DPX,   MKTAG('d', 'p', 'x', ' ') }, /* DPX */
 
+    { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'h') }, /* Apple ProRes 422 High Quality */
+    { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'n') }, /* Apple ProRes 422 Standard Definition */
+    { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 's') }, /* Apple ProRes 422 LT */
+    { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'o') }, /* Apple ProRes 422 Proxy */
+    { CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'h') }, /* Apple ProRes 4444 */
+
     { CODEC_ID_NONE, 0 },
 };