mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 10:04:23 +00:00
tests: add unit test for voamrwbenc
This commit is contained in:
parent
f78e9e1684
commit
d3fda8a644
2 changed files with 193 additions and 0 deletions
|
@ -57,6 +57,12 @@ else
|
|||
check_voaacenc =
|
||||
endif
|
||||
|
||||
if USE_VOAMRWBENC
|
||||
check_voamrwbenc = elements/voamrwbenc
|
||||
else
|
||||
check_voamrwbenc =
|
||||
endif
|
||||
|
||||
if USE_EXIF
|
||||
check_jifmux = elements/jifmux
|
||||
else
|
||||
|
@ -162,6 +168,7 @@ check_PROGRAMS = \
|
|||
$(check_faac) \
|
||||
$(check_faad) \
|
||||
$(check_voaacenc) \
|
||||
$(check_voamrwbenc) \
|
||||
$(check_mpeg2enc) \
|
||||
$(check_mplex) \
|
||||
$(check_ofa) \
|
||||
|
|
186
tests/check/elements/voamrwbenc.c
Normal file
186
tests/check/elements/voamrwbenc.c
Normal file
|
@ -0,0 +1,186 @@
|
|||
/* GStreamer
|
||||
*
|
||||
* unit test for voamrwbenc
|
||||
*
|
||||
* Copyright (C) <2011> Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
||||
*
|
||||
* 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., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#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-raw-int, " \
|
||||
"rate = (int) 16000, " \
|
||||
"channels = (int) 1, " \
|
||||
"width = (int) 16, " \
|
||||
"depth = (int) 16, " \
|
||||
"signed = (boolean) true, " \
|
||||
"endianness = (int) BYTE_ORDER "
|
||||
|
||||
#define AMRWB_CAPS_STRING "audio/AMR-WB"
|
||||
|
||||
|
||||
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (AMRWB_CAPS_STRING));
|
||||
|
||||
|
||||
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS (AUDIO_CAPS_STRING));
|
||||
|
||||
|
||||
static GstElement *
|
||||
setup_voamrwbenc (void)
|
||||
{
|
||||
GstElement *voamrwbenc;
|
||||
|
||||
GST_DEBUG ("setup_voamrwbenc");
|
||||
voamrwbenc = gst_check_setup_element ("voamrwbenc");
|
||||
/* ensure mode as expected */
|
||||
g_object_set (voamrwbenc, "band-mode", 0, NULL);
|
||||
mysrcpad = gst_check_setup_src_pad (voamrwbenc, &srctemplate, NULL);
|
||||
mysinkpad = gst_check_setup_sink_pad (voamrwbenc, &sinktemplate, NULL);
|
||||
gst_pad_set_active (mysrcpad, TRUE);
|
||||
gst_pad_set_active (mysinkpad, TRUE);
|
||||
|
||||
return voamrwbenc;
|
||||
}
|
||||
|
||||
static void
|
||||
cleanup_voamrwbenc (GstElement * voamrwbenc)
|
||||
{
|
||||
GST_DEBUG ("cleanup_aacenc");
|
||||
gst_element_set_state (voamrwbenc, GST_STATE_NULL);
|
||||
|
||||
gst_pad_set_active (mysrcpad, FALSE);
|
||||
gst_pad_set_active (mysinkpad, FALSE);
|
||||
gst_check_teardown_src_pad (voamrwbenc);
|
||||
gst_check_teardown_sink_pad (voamrwbenc);
|
||||
gst_check_teardown_element (voamrwbenc);
|
||||
}
|
||||
|
||||
static void
|
||||
do_test (void)
|
||||
{
|
||||
GstElement *voamrwbenc;
|
||||
GstBuffer *inbuffer, *outbuffer;
|
||||
GstCaps *caps;
|
||||
gint i, num_buffers;
|
||||
const gint nbuffers = 10;
|
||||
|
||||
voamrwbenc = setup_voamrwbenc ();
|
||||
fail_unless (gst_element_set_state (voamrwbenc,
|
||||
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
|
||||
"could not set to playing");
|
||||
|
||||
/* corresponds to audio buffer mentioned in the caps */
|
||||
inbuffer = gst_buffer_new_and_alloc (320 * nbuffers * 2);
|
||||
/* makes valgrind's memcheck happier */
|
||||
memset (GST_BUFFER_DATA (inbuffer), 0, GST_BUFFER_SIZE (inbuffer));
|
||||
caps = gst_caps_from_string (AUDIO_CAPS_STRING);
|
||||
|
||||
gst_buffer_set_caps (inbuffer, caps);
|
||||
gst_caps_unref (caps);
|
||||
GST_BUFFER_TIMESTAMP (inbuffer) = 0;
|
||||
ASSERT_BUFFER_REFCOUNT (inbuffer, "inbuffer", 1);
|
||||
fail_unless (gst_pad_push (mysrcpad, inbuffer) == GST_FLOW_OK);
|
||||
|
||||
/* send eos to have all flushed if needed */
|
||||
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()) == TRUE);
|
||||
|
||||
num_buffers = g_list_length (buffers);
|
||||
fail_unless_equals_int (num_buffers, nbuffers);
|
||||
|
||||
/* clean up buffers */
|
||||
for (i = 0; i < num_buffers; ++i) {
|
||||
gint size;
|
||||
guint8 *data;
|
||||
GstClockTime time, dur;
|
||||
|
||||
outbuffer = GST_BUFFER (buffers->data);
|
||||
fail_if (outbuffer == NULL);
|
||||
|
||||
data = GST_BUFFER_DATA (outbuffer);
|
||||
size = GST_BUFFER_SIZE (outbuffer);
|
||||
|
||||
/* at least for mode 0 */
|
||||
fail_unless (size == 18);
|
||||
fail_unless ((data[0] & 0x83) == 0);
|
||||
fail_unless (((data[0] >> 3) & 0xF) == 0);
|
||||
|
||||
time = GST_BUFFER_TIMESTAMP (outbuffer);
|
||||
dur = GST_BUFFER_DURATION (outbuffer);
|
||||
fail_unless (time == 20 * GST_MSECOND * i);
|
||||
fail_unless (dur == 20 * GST_MSECOND);
|
||||
|
||||
buffers = g_list_remove (buffers, outbuffer);
|
||||
|
||||
ASSERT_BUFFER_REFCOUNT (outbuffer, "outbuffer", 1);
|
||||
gst_buffer_unref (outbuffer);
|
||||
outbuffer = NULL;
|
||||
}
|
||||
|
||||
cleanup_voamrwbenc (voamrwbenc);
|
||||
g_list_free (buffers);
|
||||
buffers = NULL;
|
||||
}
|
||||
|
||||
GST_START_TEST (test_enc)
|
||||
{
|
||||
do_test ();
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
||||
|
||||
static Suite *
|
||||
voamrwbenc_suite (void)
|
||||
{
|
||||
Suite *s = suite_create ("voamrwbenc");
|
||||
TCase *tc_chain = tcase_create ("general");
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
tcase_add_test (tc_chain, test_enc);
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
int nf;
|
||||
|
||||
Suite *s = voamrwbenc_suite ();
|
||||
SRunner *sr = srunner_create (s);
|
||||
|
||||
gst_check_init (&argc, &argv);
|
||||
|
||||
srunner_run_all (sr, CK_NORMAL);
|
||||
nf = srunner_ntests_failed (sr);
|
||||
srunner_free (sr);
|
||||
|
||||
return nf;
|
||||
}
|
Loading…
Reference in a new issue