summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-03-06 11:27:31 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-03-06 11:27:31 +0000
commit387aa470840ec54fbe0376ef701dca2dac16a0e6 (patch)
tree90f8300a9df91b6502f6c029a5adf62825c9aa1d /libswscale/swscale_internal.h
parenta8804d4d71be121446ea2afc067ec1dcf241f8ad (diff)
downloadmpv-387aa470840ec54fbe0376ef701dca2dac16a0e6.tar.bz2
mpv-387aa470840ec54fbe0376ef701dca2dac16a0e6.tar.xz
Add support to BGR444/RGB444 foreign endian output in libswscale.
Patch by Janusz Krzysztofik |jkrzyszt ^ tis icnet pl|. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30855 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 856b61c484..aebe30e1cf 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -395,7 +395,8 @@ const char *sws_format_name(enum PixelFormat format);
|| (x)==PIX_FMT_RGB565LE \
|| (x)==PIX_FMT_RGB555BE \
|| (x)==PIX_FMT_RGB555LE \
- || (x)==PIX_FMT_RGB444 \
+ || (x)==PIX_FMT_RGB444BE \
+ || (x)==PIX_FMT_RGB444LE \
|| (x)==PIX_FMT_RGB8 \
|| (x)==PIX_FMT_RGB4 \
|| (x)==PIX_FMT_RGB4_BYTE \
@@ -410,7 +411,8 @@ const char *sws_format_name(enum PixelFormat format);
|| (x)==PIX_FMT_BGR565LE \
|| (x)==PIX_FMT_BGR555BE \
|| (x)==PIX_FMT_BGR555LE \
- || (x)==PIX_FMT_BGR444 \
+ || (x)==PIX_FMT_BGR444BE \
+ || (x)==PIX_FMT_BGR444LE \
|| (x)==PIX_FMT_BGR8 \
|| (x)==PIX_FMT_BGR4 \
|| (x)==PIX_FMT_BGR4_BYTE \