Просмотр исходного кода

Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630.

Originally committed as revision 20962 to svn://svn.ffmpeg.org/ffmpeg/trunk
Carl Eugen Hoyos 15 лет назад
Родитель
Сommit
484d146416
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      libavcodec/rawdec.c

+ 1 - 1
libavcodec/rawdec.c

@@ -52,7 +52,7 @@ static const PixelFormatTag pixelFormatBpsMOV[] = {
     // 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 },
 };