summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.com>2012-01-10 21:17:58 +0200
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2012-01-30 15:56:45 +0000
commit6f6f079dd93e113ad8f2e41ef56d462acbf3fea1 (patch)
treec85a5549fb41a25670bc9b36fb3dc1a7e18dfc10
parent1251fb3fc0bd60eb4a38f47403e06c293c51fb16 (diff)
tests: test 16-bit rgb formats in test_parse_caps_rgb
https://bugzilla.gnome.org/show_bug.cgi?id=667681
-rw-r--r--tests/check/libs/video.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/check/libs/video.c b/tests/check/libs/video.c
index fd3178dcf..ea32bd4f2 100644
--- a/tests/check/libs/video.c
+++ b/tests/check/libs/video.c
@@ -560,7 +560,13 @@ GST_START_TEST (test_parse_caps_rgb)
GST_VIDEO_CAPS_RGBA, GST_VIDEO_FORMAT_RGBA}, {
GST_VIDEO_CAPS_ARGB, GST_VIDEO_FORMAT_ARGB}, {
GST_VIDEO_CAPS_BGRA, GST_VIDEO_FORMAT_BGRA}, {
- GST_VIDEO_CAPS_ABGR, GST_VIDEO_FORMAT_ABGR}
+ GST_VIDEO_CAPS_ABGR, GST_VIDEO_FORMAT_ABGR},
+ /* 16 bit */
+ {
+ GST_VIDEO_CAPS_RGB_16, GST_VIDEO_FORMAT_RGB16}, {
+ GST_VIDEO_CAPS_BGR_16, GST_VIDEO_FORMAT_BGR16}, {
+ GST_VIDEO_CAPS_RGB_15, GST_VIDEO_FORMAT_RGB15}, {
+ GST_VIDEO_CAPS_BGR_15, GST_VIDEO_FORMAT_BGR15}
};
gint i;