diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-06-09 12:12:41 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-06-09 14:38:51 +0000 |
commit | 7655cc395db18a854e624771b59033194b67f2b5 (patch) | |
tree | 9bd27318eb55c055ee6f94a5978505ecec8d0ab0 /libswscale/colorspace-test.c | |
parent | b0415287e30c231f8fa366cf25fb137c4193952f (diff) | |
download | ffmpeg-7655cc395db18a854e624771b59033194b67f2b5.tar.gz |
colorspace-test: add few more tests
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libswscale/colorspace-test.c')
-rw-r--r-- | libswscale/colorspace-test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/colorspace-test.c b/libswscale/colorspace-test.c index 89713a8a0c..440b5d369a 100644 --- a/libswscale/colorspace-test.c +++ b/libswscale/colorspace-test.c @@ -54,6 +54,7 @@ int main(int argc, char **argv) const char *name; void (*func)(const uint8_t *src, uint8_t *dst, int src_size); } func_info[] = { + FUNC(2, 2, rgb12to15), FUNC(2, 2, rgb15to16), FUNC(2, 3, rgb15to24), FUNC(2, 4, rgb15to32), @@ -66,6 +67,7 @@ int main(int argc, char **argv) FUNC(4, 2, rgb32to16), FUNC(4, 3, rgb32to24), FUNC(2, 2, rgb16to15), + FUNC(2, 2, rgb12tobgr12), FUNC(2, 2, rgb15tobgr15), FUNC(2, 2, rgb15tobgr16), FUNC(2, 3, rgb15tobgr24), @@ -82,6 +84,8 @@ int main(int argc, char **argv) FUNC(4, 2, rgb32tobgr16), FUNC(4, 3, rgb32tobgr24), FUNC(4, 4, shuffle_bytes_2103), /* rgb32tobgr32 */ + FUNC(6, 6, rgb48tobgr48_LL), + FUNC(6, 6, rgb48tobgr48_LB), FUNC(0, 0, NULL) }; int width; |