diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-05-19 17:26:22 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-05-19 17:26:22 +0000 |
commit | 075ec82c547da919e3fb3affefbbe2be27c08800 (patch) | |
tree | e578ac817b069e36e6fbe510267307ef5e7ef788 /libswscale/swscale.c | |
parent | cec8e5f76aadc7df900ad0c5f914f560e40c9162 (diff) | |
download | ffmpeg-075ec82c547da919e3fb3affefbbe2be27c08800.tar.gz |
Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).
Originally committed as revision 29316 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 31e3b83cde..e3bf0c3c57 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -463,6 +463,10 @@ const char *sws_format_name(enum PixelFormat format) return "rgb4"; case PIX_FMT_RGB4_BYTE: return "rgb4 byte"; + case PIX_FMT_RGB48BE: + return "rgb48be"; + case PIX_FMT_RGB48LE: + return "rgb48le"; case PIX_FMT_NV12: return "nv12"; case PIX_FMT_NV21: |