[FFmpeg-cvslog] r20985 - trunk/libavcodec/rawdec.c

cehoyos subversion
Thu Dec 31 02:08:10 CET 2009


Author: cehoyos
Date: Thu Dec 31 02:08:10 2009
New Revision: 20985

Log:
Fix colourspace for 16 bit raw video in mov, fixes issue 1527 on big-endian.

Modified:
   trunk/libavcodec/rawdec.c

Modified: trunk/libavcodec/rawdec.c
==============================================================================
--- trunk/libavcodec/rawdec.c	Wed Dec 30 23:58:49 2009	(r20984)
+++ trunk/libavcodec/rawdec.c	Thu Dec 31 02:08:10 2009	(r20985)
@@ -51,7 +51,7 @@ static const PixelFormatTag pixelFormatB
     { PIX_FMT_PAL8,      8 },
     // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
     // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
-    { PIX_FMT_BGR555,   16 },
+    { PIX_FMT_RGB555BE, 16 },
     { PIX_FMT_RGB24,    24 },
     { PIX_FMT_ARGB,     32 },
     { PIX_FMT_NONE, 0 },



More information about the ffmpeg-cvslog mailing list