Browse Source

Fix 32bit rawvideo in avi on big-endian.

Carl Eugen Hoyos 14 years ago
parent
commit
701012d676
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavcodec/rawdec.c

+ 1 - 1
libavcodec/rawdec.c

@@ -56,7 +56,7 @@ static const PixelFormatTag pix_fmt_bps_avi[] = {
     { PIX_FMT_RGB555, 15 },
     { PIX_FMT_RGB555, 16 },
     { PIX_FMT_BGR24,  24 },
-    { PIX_FMT_RGB32,  32 },
+    { PIX_FMT_BGRA,   32 },
     { PIX_FMT_NONE, 0 },
 };