summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale_internal.h
diff options
context:
space:
mode:
authorramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-09-05 23:33:11 +0000
committerramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-09-05 23:33:11 +0000
commit6d1176f071e3e338ad48086ee866882c5d78f7c2 (patch)
treebcb89de73cc8acb9e6e55404f8f0c284a3d389f7 /libswscale/swscale_internal.h
parentb3a789863e49848c9aeaf6a7fb53dd5bc2e0661e (diff)
downloadmpv-6d1176f071e3e338ad48086ee866882c5d78f7c2.tar.bz2
mpv-6d1176f071e3e338ad48086ee866882c5d78f7c2.tar.xz
Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29650 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r--libswscale/swscale_internal.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 48843ec274..ec696e932d 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -302,12 +302,12 @@ const char *sws_format_name(enum PixelFormat format);
|| (x)==PIX_FMT_GRAY16LE \
|| (x)==PIX_FMT_RGB48BE \
|| (x)==PIX_FMT_RGB48LE \
- || (x)==PIX_FMT_YUV420PLE \
- || (x)==PIX_FMT_YUV422PLE \
- || (x)==PIX_FMT_YUV444PLE \
- || (x)==PIX_FMT_YUV420PBE \
- || (x)==PIX_FMT_YUV422PBE \
- || (x)==PIX_FMT_YUV444PBE \
+ || (x)==PIX_FMT_YUV420P16LE \
+ || (x)==PIX_FMT_YUV422P16LE \
+ || (x)==PIX_FMT_YUV444P16LE \
+ || (x)==PIX_FMT_YUV420P16BE \
+ || (x)==PIX_FMT_YUV422P16BE \
+ || (x)==PIX_FMT_YUV444P16BE \
)
#define isBE(x) ((x)&1)
#define isPlanar8YUV(x) ( \
@@ -323,12 +323,12 @@ const char *sws_format_name(enum PixelFormat format);
)
#define isPlanarYUV(x) ( \
isPlanar8YUV(x) \
- || (x)==PIX_FMT_YUV420PLE \
- || (x)==PIX_FMT_YUV422PLE \
- || (x)==PIX_FMT_YUV444PLE \
- || (x)==PIX_FMT_YUV420PBE \
- || (x)==PIX_FMT_YUV422PBE \
- || (x)==PIX_FMT_YUV444PBE \
+ || (x)==PIX_FMT_YUV420P16LE \
+ || (x)==PIX_FMT_YUV422P16LE \
+ || (x)==PIX_FMT_YUV444P16LE \
+ || (x)==PIX_FMT_YUV420P16BE \
+ || (x)==PIX_FMT_YUV422P16BE \
+ || (x)==PIX_FMT_YUV444P16BE \
)
#define isYUV(x) ( \
(x)==PIX_FMT_UYVY422 \