summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-17 14:59:55 +0000
committerlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-17 14:59:55 +0000
commita9aca9d6443b30d53843e13a978964ba34d4801a (patch)
treec2c4d5d96e57b7e7233ef50b340cce75395d04b7
parent767383f6885901634c9e1476f6d6e13bc3fefd34 (diff)
downloadmpv-a9aca9d6443b30d53843e13a978964ba34d4801a.tar.bz2
mpv-a9aca9d6443b30d53843e13a978964ba34d4801a.tar.xz
Fix the PIX_FMT_* ---> IMGFMT_* conversion (PIX_FMT_RGB32 is IMGFMT_BGR32)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19875 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 7a8c202fcb..624bb77c16 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -221,7 +221,7 @@ static const int fmt_name[PIX_FMT_NB] = {
[PIX_FMT_BGR24] = IMGFMT_BGR24, ///< Packed pixel, 3 bytes per pixel, BGRBGR...
[PIX_FMT_YUV422P] = IMGFMT_422P, ///< Planar YUV 4:2:2 (1 Cr & Cb sample per 2x1 Y samples)
[PIX_FMT_YUV444P] = IMGFMT_444P, ///< Planar YUV 4:4:4 (1 Cr & Cb sample per 1x1 Y samples)
- [PIX_FMT_RGBA32] = IMGFMT_RGB32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA..., stored in cpu endianness
+ [PIX_FMT_RGBA32] = IMGFMT_BGR32, ///< Packed pixel, 4 bytes per pixel, BGRABGRA..., stored in cpu endianness
[PIX_FMT_YUV410P] = IMGFMT_YVU9, ///< Planar YUV 4:1:0 (1 Cr & Cb sample per 4x4 Y samples)
[PIX_FMT_YUV411P] = IMGFMT_411P, ///< Planar YUV 4:1:1 (1 Cr & Cb sample per 4x1 Y samples)
[PIX_FMT_RGB565] = IMGFMT_RGB16, ///< always stored in cpu endianness