mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
tests: test 16-bit rgb formats in test_parse_caps_rgb
https://bugzilla.gnome.org/show_bug.cgi?id=667681
This commit is contained in:
parent
1251fb3fc0
commit
6f6f079dd9
1 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue