diff options
author | Peter Ross <pross@xvid.org> | 2011-03-17 21:07:18 +1100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-28 07:25:27 +0200 |
commit | 1afbae100becbfff0dcad43610326a1dadcc315d (patch) | |
tree | 6b2306d99096cf6c7c8c189fdc4908e4989fa697 /libswscale/utils.c | |
parent | b239526873dc81f9b66796ad4d9fe1cb93ec34d3 (diff) | |
download | ffmpeg-1afbae100becbfff0dcad43610326a1dadcc315d.tar.gz |
libswcale: PIX_FMT_BGR48LE and PIX_FMT_BGR48BE scaler implementation
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 7ca3cd4583..5f5eb322bf 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -73,6 +73,8 @@ const char *swscale_license(void) || (x)==PIX_FMT_RGB48LE \ || (x)==PIX_FMT_RGB32 \ || (x)==PIX_FMT_RGB32_1 \ + || (x)==PIX_FMT_BGR48BE \ + || (x)==PIX_FMT_BGR48LE \ || (x)==PIX_FMT_BGR24 \ || (x)==PIX_FMT_BGR565 \ || (x)==PIX_FMT_BGR555 \ |