gstreamer/tests/check/elements/wavpackparse.c

250 lines
7.4 KiB
C
Raw Normal View History

/* GStreamer
*
* unit test for wavpackparse
*
* Copyright (c) 2006 Sebastian Dröge <slomo@circular-chaos.org>
*
* 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.
*/
#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;
/* Wavpack file with 2 frames of silence */
guint8 test_file[] = {
0x77, 0x76, 0x70, 0x6B, 0x62, 0x00, 0x00, 0x00, /* first frame */
0x04, 0x04, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, /* include RIFF header */
0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00,
0x05, 0x18, 0x80, 0x04, 0xFF, 0xAF, 0x80, 0x60,
0x21, 0x16, 0x52, 0x49, 0x46, 0x46, 0x24, 0x90,
0x01, 0x00, 0x57, 0x41, 0x56, 0x45, 0x66, 0x6D,
0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00,
0x01, 0x00, 0x44, 0xAC, 0x00, 0x00, 0x88, 0x58,
0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x64, 0x61,
0x74, 0x61, 0x00, 0x90, 0x01, 0x00, 0x02, 0x00,
0x03, 0x00, 0x04, 0x00, 0x05, 0x03, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x65, 0x02, 0x00, 0x00,
0x00, 0x00, 0x8A, 0x02, 0x00, 0x00, 0xFF, 0x7F,
0x00, 0xE4,
0x77, 0x76, 0x70, 0x6B, 0x2E, 0x00, 0x00, 0x00, /* second frame */
0x04, 0x04, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF,
0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00,
0x05, 0x18, 0x80, 0x04, 0xFF, 0xAF, 0x80, 0x60,
0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x03,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8A, 0x02,
0x00, 0x00, 0xFF, 0x7F, 0x00, 0xE4,
};
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
ext/wavpack/: Don't play audioconvert. As wavpack wants/outputs all samples with width==32 and depth=[1,32] accept th... Original commit message from CVS: * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset), (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_post_tags), (gst_wavpack_dec_chain): * ext/wavpack/gstwavpackdec.h: * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset), (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_chain): * ext/wavpack/gstwavpackenc.h: * ext/wavpack/gstwavpackparse.c: Don't play audioconvert. As wavpack wants/outputs all samples with width==32 and depth=[1,32] accept this and let audioconvert convert to accepted formats instead of doing it in the element for n*8 depths. This also adds support for non-n*8 depths and prevents some useless memory allocations. Fixes #421598 Also add a workaround for bug #421542 in wavpackenc for now... * tests/check/elements/wavpackdec.c: (GST_START_TEST): * tests/check/elements/wavpackenc.c: (GST_START_TEST): * tests/check/elements/wavpackparse.c: (GST_START_TEST): Consider the change above in the unit tests and test if the correct caps are accepted and set. Also check for GST_BUFFER_OFFSET_END in the wavpackparse unit test. * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps): Set caps on the src pad as soon as possible. * ext/wavpack/gstwavpackdec.h: * ext/wavpack/gstwavpackcommon.h: * ext/wavpack/gstwavpackenc.h: * ext/wavpack/gstwavpackparse.h: Fix indention. gst-indent is now called by cicl.
2007-03-30 04:50:11 +00:00
GST_STATIC_CAPS ("audio/x-wavpack, "
"depth = (int) 16, "
ext/wavpack/: Don't play audioconvert. As wavpack wants/outputs all samples with width==32 and depth=[1,32] accept th... Original commit message from CVS: * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_reset), (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps), (gst_wavpack_dec_clip_outgoing_buffer), (gst_wavpack_dec_post_tags), (gst_wavpack_dec_chain): * ext/wavpack/gstwavpackdec.h: * ext/wavpack/gstwavpackenc.c: (gst_wavpack_enc_reset), (gst_wavpack_enc_sink_set_caps), (gst_wavpack_enc_set_wp_config), (gst_wavpack_enc_chain): * ext/wavpack/gstwavpackenc.h: * ext/wavpack/gstwavpackparse.c: Don't play audioconvert. As wavpack wants/outputs all samples with width==32 and depth=[1,32] accept this and let audioconvert convert to accepted formats instead of doing it in the element for n*8 depths. This also adds support for non-n*8 depths and prevents some useless memory allocations. Fixes #421598 Also add a workaround for bug #421542 in wavpackenc for now... * tests/check/elements/wavpackdec.c: (GST_START_TEST): * tests/check/elements/wavpackenc.c: (GST_START_TEST): * tests/check/elements/wavpackparse.c: (GST_START_TEST): Consider the change above in the unit tests and test if the correct caps are accepted and set. Also check for GST_BUFFER_OFFSET_END in the wavpackparse unit test. * ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_init), (gst_wavpack_dec_sink_set_caps): Set caps on the src pad as soon as possible. * ext/wavpack/gstwavpackdec.h: * ext/wavpack/gstwavpackcommon.h: * ext/wavpack/gstwavpackenc.h: * ext/wavpack/gstwavpackparse.h: Fix indention. gst-indent is now called by cicl.
2007-03-30 04:50:11 +00:00
"channels = (int) 1, "
"rate = (int) 44100, " "framed = (boolean) TRUE"));
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-wavpack"));
2012-03-05 11:20:07 +00:00
static GstElement *
setup_wavpackparse (void)
{
2012-03-05 11:20:07 +00:00
GstElement *wavpackparse;
GST_DEBUG ("setup_wavpackparse");
2012-03-05 11:20:07 +00:00
wavpackparse = gst_check_setup_element ("wavpackparse");
mysrcpad = gst_check_setup_src_pad (wavpackparse, &srctemplate);
mysinkpad = gst_check_setup_sink_pad (wavpackparse, &sinktemplate);
gst_pad_set_active (mysrcpad, TRUE);
gst_pad_set_active (mysinkpad, TRUE);
gst_check_setup_events (mysrcpad, wavpackparse, NULL, GST_FORMAT_BYTES);
2012-03-05 11:20:07 +00:00
return wavpackparse;
}
static void
2012-03-05 11:20:07 +00:00
cleanup_wavpackparse (GstElement * wavpackparse)
{
GST_DEBUG ("cleanup_wavpackparse");
2012-03-05 11:20:07 +00:00
gst_element_set_state (wavpackparse, GST_STATE_NULL);
2012-03-05 11:20:07 +00:00
gst_pad_set_active (mysrcpad, FALSE);
gst_pad_set_active (mysinkpad, FALSE);
gst_check_teardown_src_pad (wavpackparse);
gst_check_teardown_sink_pad (wavpackparse);
gst_check_teardown_element (wavpackparse);
}
GST_START_TEST (test_parsing_valid_frames)
{
2012-03-05 11:20:07 +00:00
GstElement *wavpackparse;
GstBuffer *inbuffer, *outbuffer;
int i, num_buffers;
2012-03-05 11:20:07 +00:00
GstFormat format = GST_FORMAT_TIME;
gint64 pos;
2012-03-05 11:20:07 +00:00
wavpackparse = setup_wavpackparse ();
fail_unless (gst_element_set_state (wavpackparse,
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
"could not set to playing");
inbuffer = gst_buffer_new_and_alloc (sizeof (test_file));
2012-03-05 11:20:07 +00:00
gst_buffer_fill (inbuffer, 0, test_file, sizeof (test_file));
/* should decode the buffer without problems */
fail_unless_equals_int (gst_pad_push (mysrcpad, inbuffer), GST_FLOW_OK);
/* inform of no further data */
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
num_buffers = g_list_length (buffers);
/* should get 2 buffers, each one complete wavpack frame */
fail_unless_equals_int (num_buffers, 2);
for (i = 0; i < num_buffers; ++i) {
outbuffer = GST_BUFFER (buffers->data);
fail_if (outbuffer == NULL);
2012-03-05 11:20:07 +00:00
fail_unless (gst_buffer_memcmp (outbuffer, 0, "wvpk", 4) == 0,
"Buffer contains no Wavpack frame");
fail_unless_equals_int (GST_BUFFER_DURATION (outbuffer), 580498866);
switch (i) {
case 0:{
fail_unless_equals_int (GST_BUFFER_TIMESTAMP (outbuffer), 0);
break;
}
case 1:{
fail_unless_equals_int (GST_BUFFER_TIMESTAMP (outbuffer), 580498866);
break;
}
}
buffers = g_list_remove (buffers, outbuffer);
gst_buffer_unref (outbuffer);
outbuffer = NULL;
}
2012-03-05 11:20:07 +00:00
fail_unless (gst_element_query_position (wavpackparse, format, &pos),
"Position query failed");
2012-03-05 11:20:07 +00:00
fail_unless_equals_int64 (pos, 580498866 * 2);
fail_unless (gst_element_query_duration (wavpackparse, format, NULL),
"Duration query failed");
g_list_free (buffers);
buffers = NULL;
2012-03-05 11:20:07 +00:00
cleanup_wavpackparse (wavpackparse);
}
GST_END_TEST;
GST_START_TEST (test_parsing_invalid_first_header)
{
2012-03-05 11:20:07 +00:00
GstElement *wavpackparse;
GstBuffer *inbuffer, *outbuffer;
int i, num_buffers;
2012-03-05 11:20:07 +00:00
wavpackparse = setup_wavpackparse ();
fail_unless (gst_element_set_state (wavpackparse,
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS,
"could not set to playing");
inbuffer = gst_buffer_new_and_alloc (sizeof (test_file));
2012-03-05 11:20:07 +00:00
gst_buffer_fill (inbuffer, 0, test_file, sizeof (test_file));
gst_buffer_memset (inbuffer, 0, 'k', 1);
/* should decode the buffer without problems */
fail_unless_equals_int (gst_pad_push (mysrcpad, inbuffer), GST_FLOW_OK);
/* inform of no further data */
fail_unless (gst_pad_push_event (mysrcpad, gst_event_new_eos ()));
num_buffers = g_list_length (buffers);
/* should get 1 buffers, the second non-broken one */
fail_unless_equals_int (num_buffers, 1);
for (i = 0; i < num_buffers; ++i) {
outbuffer = GST_BUFFER (buffers->data);
fail_if (outbuffer == NULL);
2012-03-05 11:20:07 +00:00
fail_unless (gst_buffer_memcmp (outbuffer, 0, "wvpk", 4) == 0,
"Buffer contains no Wavpack frame");
fail_unless_equals_int (GST_BUFFER_DURATION (outbuffer), 580498866);
switch (i) {
case 0:{
fail_unless_equals_int (GST_BUFFER_TIMESTAMP (outbuffer), 580498866);
break;
}
}
buffers = g_list_remove (buffers, outbuffer);
gst_buffer_unref (outbuffer);
outbuffer = NULL;
}
g_list_free (buffers);
buffers = NULL;
2012-03-05 11:20:07 +00:00
cleanup_wavpackparse (wavpackparse);
}
GST_END_TEST;
static Suite *
wavpackparse_suite (void)
{
Suite *s = suite_create ("wavpackparse");
TCase *tc_chain = tcase_create ("general");
suite_add_tcase (s, tc_chain);
tcase_add_test (tc_chain, test_parsing_valid_frames);
tcase_add_test (tc_chain, test_parsing_invalid_first_header);
return s;
}
int
main (int argc, char **argv)
{
int nf;
Suite *s = wavpackparse_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;
}