summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-01 13:03:33 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-01 13:03:33 +0000
commitc828c7091697ca7ac6f689623fb34c9ca5a84f7d (patch)
tree46c81f4623342849f49934024571538f8de2b80c /libavformat/mov.c
parent6b936ec6622e0ffe4181ba4fb9a9a192f3f2b79f (diff)
quicktime 'raw ' support
Originally committed as revision 8168 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index f088e5c1e6..db408fe6a0 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -68,7 +68,7 @@
static const AVCodecTag mov_video_tags[] = {
/* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */
-/* { CODEC_ID_H263, MKTAG('r', 'a', 'w', ' ') }, *//* Uncompressed RGB */
+ { CODEC_ID_RAWVIDEO, MKTAG('r', 'a', 'w', ' ') }, /* Uncompressed RGB */
/* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */
/* { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, *//* YUV with alpha-channel (AVID Uncompressed) */
/* Graphics */