/* GStreamer * * unit test for state changes on all elements * * Copyright (C) <2012> Matthew Waters * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include static GstGLDisplay *display; static GstGLContext *context; void setup (void) { display = gst_gl_display_new (); context = gst_gl_context_new (display); gst_gl_context_create (context, 0, NULL); gst_gl_memory_init (); } void teardown (void) { gst_object_unref (display); gst_object_unref (context); } GST_START_TEST (test_basic) { GstMemory *mem, *mem2; GstGLMemory *gl_mem, *gl_mem2; GstAllocator *gl_allocator; GstVideoInfo vinfo; gint i; static GstVideoFormat formats[15] = { GST_VIDEO_FORMAT_RGBx, GST_VIDEO_FORMAT_BGRx, GST_VIDEO_FORMAT_xRGB, GST_VIDEO_FORMAT_xBGR, GST_VIDEO_FORMAT_RGBA, GST_VIDEO_FORMAT_BGRA, GST_VIDEO_FORMAT_ARGB, GST_VIDEO_FORMAT_ABGR, GST_VIDEO_FORMAT_RGB, GST_VIDEO_FORMAT_BGR, GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_YV12, GST_VIDEO_FORMAT_AYUV, }; for (i = 0; i < G_N_ELEMENTS (formats); i++) { gsize width = 320, height = 240; gst_video_info_set_format (&vinfo, formats[i], width, height); gl_allocator = gst_allocator_find (GST_GL_MEMORY_ALLOCATOR); fail_if (gl_allocator == NULL); /* test allocator creation */ ASSERT_WARNING (mem = gst_allocator_alloc (gl_allocator, 0, NULL);); mem = gst_gl_memory_alloc (context, vinfo); fail_if (mem == NULL); gl_mem = (GstGLMemory *) mem; /* test init params */ fail_if (GST_VIDEO_INFO_WIDTH (&gl_mem->v_info) != width); fail_if (GST_VIDEO_INFO_HEIGHT (&gl_mem->v_info) != height); fail_if (GST_VIDEO_INFO_FORMAT (&gl_mem->v_info) != formats[i]); fail_if (gl_mem->context != context); fail_if (gl_mem->tex_id == 0); /* copy the memory */ mem2 = gst_memory_copy (mem, 0, -1); fail_if (mem == NULL); gl_mem2 = (GstGLMemory *) mem2; /* test params */ fail_if (gl_mem->tex_id == gl_mem2->tex_id); fail_if (GST_VIDEO_INFO_FORMAT (&gl_mem->v_info) != GST_VIDEO_INFO_FORMAT (&gl_mem2->v_info)); fail_if (GST_VIDEO_INFO_WIDTH (&gl_mem->v_info) != GST_VIDEO_INFO_WIDTH (&gl_mem2->v_info)); fail_if (GST_VIDEO_INFO_HEIGHT (&gl_mem->v_info) != GST_VIDEO_INFO_HEIGHT (&gl_mem2->v_info)); fail_if (gl_mem->gl_format != gl_mem->gl_format); fail_if (gl_mem->context != gl_mem->context); fail_if (gl_mem->tex_id == 0); if (gst_gl_context_get_error ()) printf ("%s\n", gst_gl_context_get_error ()); fail_if (gst_gl_context_get_error () != NULL); gst_memory_unref (mem); gst_memory_unref (mem2); gst_object_unref (gl_allocator); } } GST_END_TEST; Suite * gst_gl_memory_suite (void) { Suite *s = suite_create ("GstGLMemory"); TCase *tc_chain = tcase_create ("general"); suite_add_tcase (s, tc_chain); tcase_add_checked_fixture (tc_chain, setup, teardown); tcase_add_test (tc_chain, test_basic); return s; } GST_CHECK_MAIN (gst_gl_memory);