2009-07-29 01:51:39 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* unit test for asfmux
|
|
|
|
*
|
|
|
|
* Copyright (C) <2008> Thiago Santos <thiagoss@embedded.ufcg.edu.br>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-07-29 01:51:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gst/check/gstcheck.h>
|
|
|
|
|
|
|
|
/* For ease of programming we use globals to keep refs for our floating
|
|
|
|
* src and sink pads we create; otherwise we always have to do get_pad,
|
|
|
|
* get_peer, and then remove references in every test function */
|
|
|
|
static GstPad *mysrcpad, *mysinkpad;
|
|
|
|
|
|
|
|
#define AUDIO_CAPS_STRING "audio/x-wma, " \
|
|
|
|
"channels = (int) 2, " \
|
|
|
|
"rate = (int) 8000, " \
|
|
|
|
"wmaversion = (int) 2, " \
|
|
|
|
"block-align = (int) 14, " \
|
|
|
|
"bitrate = (int) 64000"
|
|
|
|
|
|
|
|
#define VIDEO_CAPS_STRING "video/x-wmv, " \
|
|
|
|
"width = (int) 384, " \
|
|
|
|
"height = (int) 288, " \
|
|
|
|
"framerate = (fraction) 25/1, " \
|
|
|
|
"wmvversion = (int) 2"
|
|
|
|
|
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/x-ms-asf"));
|
|
|
|
static GstStaticPadTemplate srcvideotemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS (VIDEO_CAPS_STRING));
|
|
|
|
static GstStaticPadTemplate srcaudiotemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS (AUDIO_CAPS_STRING));
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static GstPad *
|
2009-07-29 01:51:39 +00:00
|
|
|
setup_src_pad (GstElement * element,
|
2013-05-15 08:54:56 +00:00
|
|
|
GstStaticPadTemplate * template, const gchar * sinkname)
|
2009-07-29 01:51:39 +00:00
|
|
|
{
|
|
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (element, "setting up sending pad");
|
|
|
|
/* sending pad */
|
|
|
|
srcpad = gst_pad_new_from_static_template (template, "src");
|
|
|
|
fail_if (srcpad == NULL, "Could not create a srcpad");
|
|
|
|
ASSERT_OBJECT_REFCOUNT (srcpad, "srcpad", 1);
|
|
|
|
|
|
|
|
if (!(sinkpad = gst_element_get_static_pad (element, sinkname)))
|
2021-04-20 20:18:09 +00:00
|
|
|
sinkpad = gst_element_request_pad_simple (element, sinkname);
|
2009-07-29 01:51:39 +00:00
|
|
|
fail_if (sinkpad == NULL, "Could not get sink pad from %s",
|
|
|
|
GST_ELEMENT_NAME (element));
|
|
|
|
/* references are owned by: 1) us, 2) asfmux, 3) collect pads */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 3);
|
|
|
|
fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
|
|
|
|
"Could not link source and %s sink pads", GST_ELEMENT_NAME (element));
|
|
|
|
gst_object_unref (sinkpad); /* because we got it higher up */
|
|
|
|
|
|
|
|
/* references are owned by: 1) asfmux, 2) collect pads */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 2);
|
|
|
|
|
|
|
|
return srcpad;
|
|
|
|
}
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static void
|
2010-03-22 12:16:33 +00:00
|
|
|
teardown_src_pad (GstElement * element, const gchar * sinkname)
|
2009-07-29 01:51:39 +00:00
|
|
|
{
|
|
|
|
GstPad *srcpad, *sinkpad;
|
|
|
|
gchar *padname;
|
|
|
|
|
|
|
|
/* clean up floating src pad */
|
2011-11-04 11:31:19 +00:00
|
|
|
padname = g_strdup_printf (sinkname, 1);
|
2009-07-29 01:51:39 +00:00
|
|
|
if (!(sinkpad = gst_element_get_static_pad (element, padname)))
|
2021-04-20 20:18:09 +00:00
|
|
|
sinkpad = gst_element_request_pad_simple (element, padname);
|
2009-07-29 01:51:39 +00:00
|
|
|
g_free (padname);
|
|
|
|
|
|
|
|
fail_if (sinkpad == NULL, "sinkpad is null");
|
|
|
|
|
|
|
|
/* pad refs held by 1) asfmux 2) collectpads and 3) us (through _get) */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 3);
|
|
|
|
fail_unless (gst_pad_is_linked (sinkpad));
|
|
|
|
srcpad = gst_pad_get_peer (sinkpad);
|
|
|
|
|
|
|
|
fail_if (srcpad == NULL, "Couldn't get srcpad");
|
|
|
|
gst_pad_unlink (srcpad, sinkpad);
|
|
|
|
|
|
|
|
/* after unlinking, pad refs still held by
|
|
|
|
* 1) asfmux and 2) collectpads and 3) us (through _get) */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 3);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
/* one more ref is held by element itself */
|
|
|
|
|
|
|
|
/* pad refs held by both creator and this function (through _get_peer) */
|
|
|
|
ASSERT_OBJECT_REFCOUNT (srcpad, "srcpad", 2);
|
|
|
|
gst_object_unref (srcpad);
|
|
|
|
gst_object_unref (srcpad);
|
|
|
|
}
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static GstElement *
|
2010-03-22 12:16:33 +00:00
|
|
|
setup_asfmux (GstStaticPadTemplate * srctemplate, const gchar * sinkname)
|
2009-07-29 01:51:39 +00:00
|
|
|
{
|
|
|
|
GstElement *asfmux;
|
|
|
|
|
|
|
|
GST_DEBUG ("setup_asfmux");
|
|
|
|
asfmux = gst_check_setup_element ("asfmux");
|
|
|
|
|
2013-05-15 08:54:56 +00:00
|
|
|
mysrcpad = setup_src_pad (asfmux, srctemplate, sinkname);
|
2011-11-24 20:42:39 +00:00
|
|
|
mysinkpad = gst_check_setup_sink_pad (asfmux, &sinktemplate);
|
2009-07-29 01:51:39 +00:00
|
|
|
gst_pad_set_active (mysrcpad, TRUE);
|
|
|
|
gst_pad_set_active (mysinkpad, TRUE);
|
|
|
|
return asfmux;
|
|
|
|
}
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static void
|
2010-03-22 12:16:33 +00:00
|
|
|
cleanup_asfmux (GstElement * asfmux, const gchar * sinkname)
|
2009-07-29 01:51:39 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("cleanup_asfmux");
|
|
|
|
gst_element_set_state (asfmux, GST_STATE_NULL);
|
|
|
|
gst_pad_set_active (mysrcpad, FALSE);
|
|
|
|
gst_pad_set_active (mysinkpad, FALSE);
|
|
|
|
teardown_src_pad (asfmux, sinkname);
|
|
|
|
gst_check_teardown_sink_pad (asfmux);
|
|
|
|
gst_check_teardown_element (asfmux);
|
|
|
|
}
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static void
|
2010-03-22 12:16:33 +00:00
|
|
|
check_asfmux_pad (GstStaticPadTemplate * srctemplate,
|
|
|
|
const gchar * src_caps_string, const gchar * sinkname)
|
2009-07-29 01:51:39 +00:00
|
|
|
{
|
|
|
|
GstElement *asfmux;
|
|
|
|
GstBuffer *inbuffer;
|
|
|
|
GstCaps *caps;
|
|
|
|
GstFlowReturn ret;
|
2010-12-21 16:03:43 +00:00
|
|
|
GList *l;
|
2009-07-29 01:51:39 +00:00
|
|
|
|
|
|
|
asfmux = setup_asfmux (srctemplate, sinkname);
|
|
|
|
fail_unless (gst_element_set_state (asfmux,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
|
|
|
"could not set to playing");
|
|
|
|
|
|
|
|
inbuffer = gst_buffer_new_and_alloc (1);
|
|
|
|
caps = gst_caps_from_string (src_caps_string);
|
2013-05-15 08:54:56 +00:00
|
|
|
gst_check_setup_events (mysrcpad, asfmux, caps, GST_FORMAT_TIME);
|
2009-07-29 01:51:39 +00:00
|
|
|
gst_caps_unref (caps);
|
|
|
|
GST_BUFFER_TIMESTAMP (inbuffer) = 0;
|
|
|
|
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
|
|
|
ret = gst_pad_push (mysrcpad, inbuffer);
|
|
|
|
fail_unless (ret == GST_FLOW_OK, "Pad push returned: %d", ret);
|
|
|
|
|
|
|
|
cleanup_asfmux (asfmux, sinkname);
|
2010-12-21 16:03:43 +00:00
|
|
|
for (l = buffers; l; l = l->next)
|
|
|
|
gst_buffer_unref (l->data);
|
2009-07-29 01:51:39 +00:00
|
|
|
g_list_free (buffers);
|
|
|
|
buffers = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_video_pad)
|
|
|
|
{
|
2011-11-04 11:31:19 +00:00
|
|
|
check_asfmux_pad (&srcvideotemplate, VIDEO_CAPS_STRING, "video_%u");
|
2009-07-29 01:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_audio_pad)
|
|
|
|
{
|
2011-11-04 11:31:19 +00:00
|
|
|
check_asfmux_pad (&srcaudiotemplate, AUDIO_CAPS_STRING, "audio_%u");
|
2009-07-29 01:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
2010-03-21 20:39:18 +00:00
|
|
|
static Suite *
|
2009-07-29 01:51:39 +00:00
|
|
|
asfmux_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("asfmux");
|
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
tcase_add_test (tc_chain, test_video_pad);
|
|
|
|
tcase_add_test (tc_chain, test_audio_pad);
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-06-02 14:02:37 +00:00
|
|
|
GST_CHECK_MAIN (asfmux);
|