Commit 701012d6 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Fix 32bit rawvideo in avi on big-endian.

parent a138121b
...@@ -56,7 +56,7 @@ static const PixelFormatTag pix_fmt_bps_avi[] = { ...@@ -56,7 +56,7 @@ static const PixelFormatTag pix_fmt_bps_avi[] = {
{ PIX_FMT_RGB555, 15 }, { PIX_FMT_RGB555, 15 },
{ PIX_FMT_RGB555, 16 }, { PIX_FMT_RGB555, 16 },
{ PIX_FMT_BGR24, 24 }, { PIX_FMT_BGR24, 24 },
{ PIX_FMT_RGB32, 32 }, { PIX_FMT_BGRA, 32 },
{ PIX_FMT_NONE, 0 }, { PIX_FMT_NONE, 0 },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment