diff rawdec.c @ 10736:8a9b0b693a30 libavcodec

Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630.
author cehoyos
date Tue, 29 Dec 2009 11:53:51 +0000
parents 5198794511a4
children d2c1c2f835b7
line wrap: on
line diff
--- a/rawdec.c	Tue Dec 29 11:42:16 2009 +0000
+++ b/rawdec.c	Tue Dec 29 11:53:51 2009 +0000
@@ -52,7 +52,7 @@
     // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
     { PIX_FMT_BGR555,   16 },
     { PIX_FMT_RGB24,    24 },
-    { PIX_FMT_BGR32_1,  32 },
+    { PIX_FMT_ARGB,     32 },
     { PIX_FMT_NONE, 0 },
 };