Fix 32bit rawvideo in avi on big-endian.

This commit is contained in:
Carl Eugen Hoyos 2011-05-26 23:49:17 +02:00
parent a138121bf1
commit 701012d676
1 changed files with 1 additions and 1 deletions

View File

@ -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 },
};