[Ffmpeg-cvslog] r8203 - in trunk: libavcodec/raw.c libavformat/mov.c
bcoudurier
subversion
Sat Mar 3 15:11:45 CET 2007
Author: bcoudurier
Date: Sat Mar 3 15:11:45 2007
New Revision: 8203
Modified:
trunk/libavcodec/raw.c
trunk/libavformat/mov.c
Log:
partial avid meridien uncompressed support
Modified: trunk/libavcodec/raw.c
==============================================================================
--- trunk/libavcodec/raw.c (original)
+++ trunk/libavcodec/raw.c Sat Mar 3 15:11:45 2007
@@ -59,6 +59,7 @@ static const PixelFormatTag pixelFormatT
/* quicktime */
{ PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
+ { PIX_FMT_UYVY422, MKTAG('A', 'V', 'U', 'I') }, /* FIXME merge both fields */
{ -1, 0 },
};
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Sat Mar 3 15:11:45 2007
@@ -70,7 +70,7 @@ static const AVCodecTag mov_video_tags[]
/* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */
{ 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) */
+ { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, /* YUV with alpha-channel (AVID Uncompressed) */
/* Graphics */
/* Animation */
/* Apple video */
More information about the ffmpeg-cvslog
mailing list