comparison mov.c @ 1823:746ff3525dd7 libavformat

quicktime 'raw ' support
author bcoudurier
date Thu, 01 Mar 2007 13:03:33 +0000
parents fc243e5a290e
children 384f199303aa
comparison
equal deleted inserted replaced
1822:2526fc1e568b 1823:746ff3525dd7
66 #undef NDEBUG 66 #undef NDEBUG
67 #include <assert.h> 67 #include <assert.h>
68 68
69 static const AVCodecTag mov_video_tags[] = { 69 static const AVCodecTag mov_video_tags[] = {
70 /* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */ 70 /* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */
71 /* { CODEC_ID_H263, MKTAG('r', 'a', 'w', ' ') }, *//* Uncompressed RGB */ 71 { CODEC_ID_RAWVIDEO, MKTAG('r', 'a', 'w', ' ') }, /* Uncompressed RGB */
72 /* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */ 72 /* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */
73 /* { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, *//* YUV with alpha-channel (AVID Uncompressed) */ 73 /* { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, *//* YUV with alpha-channel (AVID Uncompressed) */
74 /* Graphics */ 74 /* Graphics */
75 /* Animation */ 75 /* Animation */
76 /* Apple video */ 76 /* Apple video */