gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
/* GStreamer unit tests for the interleave element
|
|
|
|
* Copyright (C) 2008 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
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-10-20 14:33:41 +00:00
|
|
|
#include <stdio.h>
|
2012-01-30 15:40:19 +00:00
|
|
|
#include <gst/audio/audio.h>
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
#include <gst/check/gstcheck.h>
|
2012-01-31 12:41:45 +00:00
|
|
|
#include <gst/audio/audio.h>
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
GST_START_TEST (test_create_and_unref)
|
|
|
|
{
|
|
|
|
GstElement *deinterleave;
|
|
|
|
|
|
|
|
deinterleave = gst_element_factory_make ("deinterleave", NULL);
|
|
|
|
fail_unless (deinterleave != NULL);
|
|
|
|
|
|
|
|
gst_element_set_state (deinterleave, GST_STATE_NULL);
|
|
|
|
gst_object_unref (deinterleave);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
static GstPad *mysrcpad, **mysinkpads;
|
|
|
|
static gint nsinkpads;
|
|
|
|
static GstBus *bus;
|
|
|
|
static GstElement *deinterleave;
|
|
|
|
|
|
|
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2012-01-03 09:26:48 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_NE (F32) ", "
|
2012-01-30 15:40:19 +00:00
|
|
|
"channels = (int) 1, layout = (string) {interleaved, non-interleaved}, rate = (int) {32000, 48000}"));
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2012-01-03 09:26:48 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_NE (F32) ", "
|
2012-01-30 15:40:19 +00:00
|
|
|
"channels = (int) { 2, 3 }, layout = (string) interleaved, rate = (int) {32000, 48000}"));
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
#define CAPS_32khz \
|
2012-01-03 09:26:48 +00:00
|
|
|
"audio/x-raw, " \
|
|
|
|
"format = (string) "GST_AUDIO_NE (F32) ", " \
|
2012-01-30 15:40:19 +00:00
|
|
|
"channels = (int) 2, layout = (string) interleaved, " \
|
2012-01-03 09:26:48 +00:00
|
|
|
"rate = (int) 32000"
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
#define CAPS_48khz \
|
2012-01-03 09:26:48 +00:00
|
|
|
"audio/x-raw, " \
|
|
|
|
"format = (string) "GST_AUDIO_NE (F32) ", " \
|
2012-01-30 15:40:19 +00:00
|
|
|
"channels = (int) 2, layout = (string) interleaved, " \
|
2012-01-03 09:26:48 +00:00
|
|
|
"rate = (int) 48000"
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
#define CAPS_48khz_3CH \
|
2012-01-03 09:26:48 +00:00
|
|
|
"audio/x-raw, " \
|
|
|
|
"format = (string) "GST_AUDIO_NE (F32) ", " \
|
2012-01-30 15:40:19 +00:00
|
|
|
"channels = (int) 3, layout = (string) interleaved, " \
|
2012-01-03 09:26:48 +00:00
|
|
|
"rate = (int) 48000"
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
static GstFlowReturn
|
2012-01-03 09:26:48 +00:00
|
|
|
deinterleave_chain_func (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
{
|
|
|
|
gint i;
|
2012-01-31 12:41:45 +00:00
|
|
|
GstMapInfo map;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
gfloat *indata;
|
|
|
|
|
|
|
|
fail_unless (GST_IS_BUFFER (buffer));
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
|
|
|
indata = (gfloat *) map.data;
|
|
|
|
fail_unless_equals_int (map.size, 48000 * sizeof (gfloat));
|
2012-01-03 09:26:48 +00:00
|
|
|
fail_unless (indata != NULL);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
if (strcmp (GST_PAD_NAME (pad), "sink0") == 0) {
|
|
|
|
for (i = 0; i < 48000; i++)
|
|
|
|
fail_unless_equals_float (indata[i], -1.0);
|
|
|
|
} else if (strcmp (GST_PAD_NAME (pad), "sink1") == 0) {
|
|
|
|
for (i = 0; i < 48000; i++)
|
|
|
|
fail_unless_equals_float (indata[i], 1.0);
|
|
|
|
} else {
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (buffer, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
deinterleave_pad_added (GstElement * src, GstPad * pad, gpointer data)
|
|
|
|
{
|
|
|
|
gchar *name;
|
|
|
|
gint link = GPOINTER_TO_INT (data);
|
|
|
|
|
|
|
|
if (nsinkpads >= link)
|
|
|
|
return;
|
|
|
|
|
|
|
|
name = g_strdup_printf ("sink%d", nsinkpads);
|
|
|
|
|
|
|
|
mysinkpads[nsinkpads] =
|
|
|
|
gst_pad_new_from_static_template (&sinktemplate, name);
|
|
|
|
g_free (name);
|
|
|
|
fail_if (mysinkpads[nsinkpads] == NULL);
|
|
|
|
|
|
|
|
gst_pad_set_chain_function (mysinkpads[nsinkpads], deinterleave_chain_func);
|
|
|
|
fail_unless (gst_pad_link (pad, mysinkpads[nsinkpads]) == GST_PAD_LINK_OK);
|
|
|
|
gst_pad_set_active (mysinkpads[nsinkpads], TRUE);
|
|
|
|
nsinkpads++;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_2_channels)
|
|
|
|
{
|
|
|
|
GstPad *sinkpad;
|
|
|
|
gint i;
|
|
|
|
GstBuffer *inbuf;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *indata;
|
2012-01-31 12:41:45 +00:00
|
|
|
GstMapInfo map;
|
2012-01-30 15:40:19 +00:00
|
|
|
guint64 channel_mask = 0;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
mysinkpads = g_new0 (GstPad *, 2);
|
|
|
|
nsinkpads = 0;
|
|
|
|
|
|
|
|
deinterleave = gst_element_factory_make ("deinterleave", NULL);
|
|
|
|
fail_unless (deinterleave != NULL);
|
|
|
|
|
|
|
|
mysrcpad = gst_pad_new_from_static_template (&srctemplate, "src");
|
|
|
|
fail_unless (mysrcpad != NULL);
|
2012-01-30 15:40:19 +00:00
|
|
|
gst_pad_set_active (mysrcpad, TRUE);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
caps = gst_caps_from_string (CAPS_48khz);
|
2012-01-30 15:40:19 +00:00
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
|
|
|
|
gst_caps_set_simple (caps, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
|
|
|
|
2013-05-13 12:55:14 +00:00
|
|
|
gst_check_setup_events (mysrcpad, deinterleave, caps, GST_FORMAT_TIME);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
2008-05-26 09:57:40 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (deinterleave, "sink");
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
fail_unless (sinkpad != NULL);
|
|
|
|
fail_unless (gst_pad_link (mysrcpad, sinkpad) == GST_PAD_LINK_OK);
|
|
|
|
g_object_unref (sinkpad);
|
|
|
|
|
|
|
|
g_signal_connect (deinterleave, "pad-added",
|
|
|
|
G_CALLBACK (deinterleave_pad_added), GINT_TO_POINTER (2));
|
|
|
|
|
|
|
|
bus = gst_bus_new ();
|
|
|
|
gst_element_set_bus (deinterleave, bus);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
inbuf = gst_buffer_new_and_alloc (2 * 48000 * sizeof (gfloat));
|
2012-01-30 15:40:19 +00:00
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (inbuf, &map, GST_MAP_WRITE);
|
|
|
|
indata = (gfloat *) map.data;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
for (i = 0; i < 2 * 48000; i += 2) {
|
|
|
|
indata[i] = -1.0;
|
|
|
|
indata[i + 1] = 1.0;
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (inbuf, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuf) == GST_FLOW_OK);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
for (i = 0; i < nsinkpads; i++)
|
|
|
|
g_object_unref (mysinkpads[i]);
|
|
|
|
g_free (mysinkpads);
|
|
|
|
mysinkpads = NULL;
|
|
|
|
|
|
|
|
g_object_unref (deinterleave);
|
|
|
|
g_object_unref (bus);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_2_channels_1_linked)
|
|
|
|
{
|
|
|
|
GstPad *sinkpad;
|
|
|
|
gint i;
|
|
|
|
GstBuffer *inbuf;
|
|
|
|
GstCaps *caps;
|
|
|
|
gfloat *indata;
|
2012-01-31 12:41:45 +00:00
|
|
|
GstMapInfo map;
|
2012-01-30 15:40:19 +00:00
|
|
|
guint64 channel_mask = 0;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
nsinkpads = 0;
|
|
|
|
mysinkpads = g_new0 (GstPad *, 2);
|
|
|
|
|
|
|
|
deinterleave = gst_element_factory_make ("deinterleave", NULL);
|
|
|
|
fail_unless (deinterleave != NULL);
|
|
|
|
|
|
|
|
mysrcpad = gst_pad_new_from_static_template (&srctemplate, "src");
|
|
|
|
fail_unless (mysrcpad != NULL);
|
2012-01-30 15:40:19 +00:00
|
|
|
gst_pad_set_active (mysrcpad, TRUE);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
caps = gst_caps_from_string (CAPS_48khz);
|
2012-01-30 15:40:19 +00:00
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
|
|
|
|
gst_caps_set_simple (caps, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
|
|
|
|
2013-05-13 12:55:14 +00:00
|
|
|
gst_check_setup_events (mysrcpad, deinterleave, caps, GST_FORMAT_TIME);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
2008-05-26 09:57:40 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (deinterleave, "sink");
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
fail_unless (sinkpad != NULL);
|
|
|
|
fail_unless (gst_pad_link (mysrcpad, sinkpad) == GST_PAD_LINK_OK);
|
|
|
|
g_object_unref (sinkpad);
|
|
|
|
|
|
|
|
g_signal_connect (deinterleave, "pad-added",
|
|
|
|
G_CALLBACK (deinterleave_pad_added), GINT_TO_POINTER (1));
|
|
|
|
|
|
|
|
bus = gst_bus_new ();
|
|
|
|
gst_element_set_bus (deinterleave, bus);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
inbuf = gst_buffer_new_and_alloc (2 * 48000 * sizeof (gfloat));
|
2012-01-30 15:40:19 +00:00
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (inbuf, &map, GST_MAP_WRITE);
|
|
|
|
indata = (gfloat *) map.data;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
for (i = 0; i < 2 * 48000; i += 2) {
|
|
|
|
indata[i] = -1.0;
|
|
|
|
indata[i + 1] = 1.0;
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (inbuf, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuf) == GST_FLOW_OK);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
for (i = 0; i < nsinkpads; i++)
|
|
|
|
g_object_unref (mysinkpads[i]);
|
|
|
|
g_free (mysinkpads);
|
|
|
|
mysinkpads = NULL;
|
|
|
|
|
|
|
|
g_object_unref (deinterleave);
|
|
|
|
g_object_unref (bus);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
GST_START_TEST (test_2_channels_caps_change)
|
|
|
|
{
|
|
|
|
GstPad *sinkpad;
|
|
|
|
GstCaps *caps, *caps2;
|
|
|
|
gint i;
|
|
|
|
GstBuffer *inbuf;
|
|
|
|
gfloat *indata;
|
2012-01-31 12:41:45 +00:00
|
|
|
GstMapInfo map;
|
2012-01-30 15:40:19 +00:00
|
|
|
guint64 channel_mask;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
nsinkpads = 0;
|
|
|
|
mysinkpads = g_new0 (GstPad *, 2);
|
|
|
|
|
|
|
|
deinterleave = gst_element_factory_make ("deinterleave", NULL);
|
|
|
|
fail_unless (deinterleave != NULL);
|
|
|
|
|
|
|
|
mysrcpad = gst_pad_new_from_static_template (&srctemplate, "src");
|
|
|
|
fail_unless (mysrcpad != NULL);
|
|
|
|
|
2012-01-30 15:40:19 +00:00
|
|
|
gst_pad_set_active (mysrcpad, TRUE);
|
|
|
|
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
caps = gst_caps_from_string (CAPS_48khz);
|
2012-01-30 15:40:19 +00:00
|
|
|
channel_mask = 0;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
|
|
|
|
gst_caps_set_simple (caps, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
2013-05-13 12:55:14 +00:00
|
|
|
gst_check_setup_events (mysrcpad, deinterleave, caps, GST_FORMAT_TIME);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
2008-05-26 09:57:40 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (deinterleave, "sink");
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
fail_unless (sinkpad != NULL);
|
|
|
|
fail_unless (gst_pad_link (mysrcpad, sinkpad) == GST_PAD_LINK_OK);
|
|
|
|
g_object_unref (sinkpad);
|
|
|
|
|
|
|
|
g_signal_connect (deinterleave, "pad-added",
|
|
|
|
G_CALLBACK (deinterleave_pad_added), GINT_TO_POINTER (2));
|
|
|
|
|
|
|
|
bus = gst_bus_new ();
|
|
|
|
gst_element_set_bus (deinterleave, bus);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_PLAYING) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
inbuf = gst_buffer_new_and_alloc (2 * 48000 * sizeof (gfloat));
|
2012-01-30 15:40:19 +00:00
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (inbuf, &map, GST_MAP_WRITE);
|
|
|
|
indata = (gfloat *) map.data;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
for (i = 0; i < 2 * 48000; i += 2) {
|
|
|
|
indata[i] = -1.0;
|
|
|
|
indata[i + 1] = 1.0;
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (inbuf, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuf) == GST_FLOW_OK);
|
|
|
|
|
|
|
|
caps2 = gst_caps_from_string (CAPS_32khz);
|
2012-01-30 15:40:19 +00:00
|
|
|
channel_mask = 0;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
|
|
|
|
gst_caps_set_simple (caps2, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
gst_pad_set_caps (mysrcpad, caps2);
|
|
|
|
|
|
|
|
inbuf = gst_buffer_new_and_alloc (2 * 48000 * sizeof (gfloat));
|
2012-01-30 15:40:19 +00:00
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (inbuf, &map, GST_MAP_WRITE);
|
|
|
|
indata = (gfloat *) map.data;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
for (i = 0; i < 2 * 48000; i += 2) {
|
|
|
|
indata[i] = -1.0;
|
|
|
|
indata[i + 1] = 1.0;
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (inbuf, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
/* Should work fine because the caps changed in a compatible way */
|
|
|
|
fail_unless (gst_pad_push (mysrcpad, inbuf) == GST_FLOW_OK);
|
|
|
|
|
|
|
|
gst_caps_unref (caps2);
|
|
|
|
|
|
|
|
caps2 = gst_caps_from_string (CAPS_48khz_3CH);
|
2012-01-30 15:40:19 +00:00
|
|
|
channel_mask = 0;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT;
|
|
|
|
channel_mask |=
|
|
|
|
G_GUINT64_CONSTANT (1) << GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER;
|
|
|
|
gst_caps_set_simple (caps2, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
gst_pad_set_caps (mysrcpad, caps2);
|
|
|
|
|
|
|
|
inbuf = gst_buffer_new_and_alloc (3 * 48000 * sizeof (gfloat));
|
2012-01-30 15:40:19 +00:00
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (inbuf, &map, GST_MAP_WRITE);
|
|
|
|
indata = (gfloat *) map.data;
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
for (i = 0; i < 3 * 48000; i += 3) {
|
|
|
|
indata[i] = -1.0;
|
|
|
|
indata[i + 1] = 1.0;
|
|
|
|
indata[i + 2] = 0.0;
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (inbuf, &map);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
/* Should break because the caps changed in an incompatible way */
|
|
|
|
fail_if (gst_pad_push (mysrcpad, inbuf) == GST_FLOW_OK);
|
|
|
|
|
|
|
|
fail_unless (gst_element_set_state (deinterleave,
|
|
|
|
GST_STATE_NULL) == GST_STATE_CHANGE_SUCCESS);
|
|
|
|
|
|
|
|
for (i = 0; i < nsinkpads; i++)
|
|
|
|
g_object_unref (mysinkpads[i]);
|
|
|
|
g_free (mysinkpads);
|
|
|
|
mysinkpads = NULL;
|
|
|
|
|
|
|
|
g_object_unref (deinterleave);
|
|
|
|
g_object_unref (bus);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
gst_caps_unref (caps2);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
|
|
|
|
2008-05-14 14:19:47 +00:00
|
|
|
#define SAMPLES_PER_BUFFER 10
|
|
|
|
#define NUM_CHANNELS 8
|
|
|
|
#define SAMPLE_RATE 44100
|
|
|
|
|
|
|
|
static guint pads_created;
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_channel_positions (GstCaps * caps, int channels,
|
|
|
|
GstAudioChannelPosition * channelpositions)
|
|
|
|
{
|
|
|
|
int c;
|
2012-01-30 15:40:19 +00:00
|
|
|
guint64 channel_mask = 0;
|
2008-05-14 14:19:47 +00:00
|
|
|
|
2012-01-30 15:40:19 +00:00
|
|
|
for (c = 0; c < channels; c++)
|
|
|
|
channel_mask |= G_GUINT64_CONSTANT (1) << channelpositions[c];
|
2008-05-14 14:19:47 +00:00
|
|
|
|
2012-01-30 15:40:19 +00:00
|
|
|
gst_caps_set_simple (caps, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
|
|
|
NULL);
|
2008-05-14 14:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
src_handoff_float32_8ch (GstElement * src, GstBuffer * buf, GstPad * pad,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2012-01-03 09:26:48 +00:00
|
|
|
gfloat *data, *p;
|
2008-05-14 14:19:47 +00:00
|
|
|
guint size, i, c;
|
|
|
|
|
|
|
|
size = sizeof (gfloat) * SAMPLES_PER_BUFFER * NUM_CHANNELS;
|
2012-01-03 09:26:48 +00:00
|
|
|
data = p = (gfloat *) g_malloc (size);
|
2010-03-11 15:51:40 +00:00
|
|
|
|
2008-05-14 14:19:47 +00:00
|
|
|
for (i = 0; i < SAMPLES_PER_BUFFER; ++i) {
|
|
|
|
for (c = 0; c < NUM_CHANNELS; ++c) {
|
2012-01-03 09:26:48 +00:00
|
|
|
*p = (gfloat) ((i * NUM_CHANNELS) + c);
|
|
|
|
++p;
|
2008-05-14 14:19:47 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-30 15:40:19 +00:00
|
|
|
|
2012-04-05 17:17:42 +00:00
|
|
|
if (gst_buffer_n_memory (buf)) {
|
|
|
|
gst_buffer_replace_memory_range (buf, 0, -1,
|
|
|
|
gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
|
|
|
|
} else {
|
|
|
|
gst_buffer_insert_memory (buf, 0,
|
|
|
|
gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
|
|
|
|
}
|
2012-01-03 09:26:48 +00:00
|
|
|
GST_BUFFER_OFFSET (buf) = 0;
|
|
|
|
GST_BUFFER_TIMESTAMP (buf) = 0;
|
2008-05-14 14:19:47 +00:00
|
|
|
}
|
|
|
|
|
2013-05-13 12:55:14 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
src_event_probe (GstPad * pad, GstPadProbeInfo * info, gpointer userdata)
|
|
|
|
{
|
|
|
|
GstAudioChannelPosition layout[NUM_CHANNELS];
|
|
|
|
GstCaps *caps;
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
if ((info->type & GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM)
|
|
|
|
&& GST_EVENT_TYPE (info->data) == GST_EVENT_STREAM_START) {
|
|
|
|
gst_pad_remove_probe (pad, info->id);
|
|
|
|
|
|
|
|
caps = gst_caps_new_simple ("audio/x-raw",
|
|
|
|
"format", G_TYPE_STRING, GST_AUDIO_NE (F32),
|
|
|
|
"channels", G_TYPE_INT, NUM_CHANNELS,
|
|
|
|
"layout", G_TYPE_STRING, "interleaved",
|
|
|
|
"rate", G_TYPE_INT, SAMPLE_RATE, NULL);
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_CHANNELS; ++i)
|
|
|
|
layout[i] = GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT + i;
|
|
|
|
|
|
|
|
set_channel_positions (caps, NUM_CHANNELS, layout);
|
|
|
|
gst_pad_set_caps (pad, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_PAD_PROBE_OK;
|
|
|
|
}
|
|
|
|
|
2012-01-03 09:26:48 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
float_buffer_check_probe (GstPad * pad, GstPadProbeInfo * info,
|
|
|
|
gpointer userdata)
|
2008-05-14 14:19:47 +00:00
|
|
|
{
|
2012-01-31 12:41:45 +00:00
|
|
|
GstMapInfo map;
|
2008-05-14 14:19:47 +00:00
|
|
|
gfloat *data;
|
|
|
|
guint padnum, numpads;
|
|
|
|
guint num, i;
|
gst/interleave/: Add support for all raw audio formats and provide better negotiation if the caps are changing.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.c: (deinterleave_24),
(gst_deinterleave_finalize), (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_init),
(gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
(gst_deinterleave_set_process_function),
(gst_deinterleave_sink_setcaps), (__remove_channels),
(__set_channels), (gst_deinterleave_getcaps),
(gst_deinterleave_process), (gst_deinterleave_chain),
(gst_deinterleave_sink_activate_push):
* gst/interleave/deinterleave.h:
Add support for all raw audio formats and provide better negotiation
if the caps are changing.
Don't allow changes of the channel positions and set the position of
the corresponding channel on the src pad caps.
General cleanup and smaller bugfixes.
* tests/check/elements/deinterleave.c: (float_buffer_check_probe):
Check the channel positions on the output buffer caps.
2008-05-16 21:56:24 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *s;
|
|
|
|
GstAudioChannelPosition *pos;
|
|
|
|
gint channels;
|
2012-01-03 09:26:48 +00:00
|
|
|
GstBuffer *buffer = GST_PAD_PROBE_INFO_BUFFER (info);
|
2012-01-30 15:40:19 +00:00
|
|
|
GstAudioInfo audio_info;
|
2012-02-09 17:09:45 +00:00
|
|
|
guint pad_id = GPOINTER_TO_UINT (userdata);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
2012-01-30 15:40:19 +00:00
|
|
|
fail_unless_equals_int (sscanf (GST_PAD_NAME (pad), "src_%u", &padnum), 1);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
|
|
|
numpads = pads_created;
|
|
|
|
|
gst/interleave/: Add support for all raw audio formats and provide better negotiation if the caps are changing.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.c: (deinterleave_24),
(gst_deinterleave_finalize), (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_init),
(gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
(gst_deinterleave_set_process_function),
(gst_deinterleave_sink_setcaps), (__remove_channels),
(__set_channels), (gst_deinterleave_getcaps),
(gst_deinterleave_process), (gst_deinterleave_chain),
(gst_deinterleave_sink_activate_push):
* gst/interleave/deinterleave.h:
Add support for all raw audio formats and provide better negotiation
if the caps are changing.
Don't allow changes of the channel positions and set the position of
the corresponding channel on the src pad caps.
General cleanup and smaller bugfixes.
* tests/check/elements/deinterleave.c: (float_buffer_check_probe):
Check the channel positions on the output buffer caps.
2008-05-16 21:56:24 +00:00
|
|
|
/* Check caps */
|
2012-01-03 09:26:48 +00:00
|
|
|
caps = gst_pad_get_current_caps (pad);
|
gst/interleave/: Add support for all raw audio formats and provide better negotiation if the caps are changing.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.c: (deinterleave_24),
(gst_deinterleave_finalize), (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_init),
(gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
(gst_deinterleave_set_process_function),
(gst_deinterleave_sink_setcaps), (__remove_channels),
(__set_channels), (gst_deinterleave_getcaps),
(gst_deinterleave_process), (gst_deinterleave_chain),
(gst_deinterleave_sink_activate_push):
* gst/interleave/deinterleave.h:
Add support for all raw audio formats and provide better negotiation
if the caps are changing.
Don't allow changes of the channel positions and set the position of
the corresponding channel on the src pad caps.
General cleanup and smaller bugfixes.
* tests/check/elements/deinterleave.c: (float_buffer_check_probe):
Check the channel positions on the output buffer caps.
2008-05-16 21:56:24 +00:00
|
|
|
fail_unless (caps != NULL);
|
|
|
|
s = gst_caps_get_structure (caps, 0);
|
|
|
|
fail_unless (gst_structure_get_int (s, "channels", &channels));
|
|
|
|
fail_unless_equals_int (channels, 1);
|
2012-01-30 15:40:19 +00:00
|
|
|
|
|
|
|
gst_audio_info_init (&audio_info);
|
|
|
|
fail_unless (gst_audio_info_from_caps (&audio_info, caps));
|
|
|
|
|
|
|
|
pos = audio_info.position;
|
|
|
|
fail_unless (pos != NULL
|
|
|
|
&& pos[0] == GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT + pad_id);
|
2012-01-03 09:26:48 +00:00
|
|
|
gst_caps_unref (caps);
|
gst/interleave/: Add support for all raw audio formats and provide better negotiation if the caps are changing.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.c: (deinterleave_24),
(gst_deinterleave_finalize), (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_init),
(gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
(gst_deinterleave_set_process_function),
(gst_deinterleave_sink_setcaps), (__remove_channels),
(__set_channels), (gst_deinterleave_getcaps),
(gst_deinterleave_process), (gst_deinterleave_chain),
(gst_deinterleave_sink_activate_push):
* gst/interleave/deinterleave.h:
Add support for all raw audio formats and provide better negotiation
if the caps are changing.
Don't allow changes of the channel positions and set the position of
the corresponding channel on the src pad caps.
General cleanup and smaller bugfixes.
* tests/check/elements/deinterleave.c: (float_buffer_check_probe):
Check the channel positions on the output buffer caps.
2008-05-16 21:56:24 +00:00
|
|
|
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
|
|
|
data = (gfloat *) map.data;
|
|
|
|
num = map.size / sizeof (gfloat);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
gst/interleave/: Add support for all raw audio formats and provide better negotiation if the caps are changing.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.c: (deinterleave_24),
(gst_deinterleave_finalize), (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_init),
(gst_deinterleave_add_new_pads), (gst_deinterleave_set_pads_caps),
(gst_deinterleave_set_process_function),
(gst_deinterleave_sink_setcaps), (__remove_channels),
(__set_channels), (gst_deinterleave_getcaps),
(gst_deinterleave_process), (gst_deinterleave_chain),
(gst_deinterleave_sink_activate_push):
* gst/interleave/deinterleave.h:
Add support for all raw audio formats and provide better negotiation
if the caps are changing.
Don't allow changes of the channel positions and set the position of
the corresponding channel on the src pad caps.
General cleanup and smaller bugfixes.
* tests/check/elements/deinterleave.c: (float_buffer_check_probe):
Check the channel positions on the output buffer caps.
2008-05-16 21:56:24 +00:00
|
|
|
/* Check buffer content */
|
2008-05-14 14:19:47 +00:00
|
|
|
for (i = 0; i < num; ++i) {
|
|
|
|
guint val, rest;
|
|
|
|
|
|
|
|
val = (guint) data[i];
|
|
|
|
GST_LOG ("%s[%u]: %8f", GST_PAD_NAME (pad), i, data[i]);
|
|
|
|
/* can't use the modulo operator in the assertion statement, since due to
|
|
|
|
* the way it gets expanded it would be interpreted as a printf operator
|
|
|
|
* in the failure case, which will result in segfaults */
|
|
|
|
rest = val % numpads;
|
|
|
|
/* check that the first channel is on pad src0, the second on src1 etc. */
|
|
|
|
fail_unless_equals_int (rest, padnum);
|
|
|
|
}
|
2012-01-31 12:41:45 +00:00
|
|
|
gst_buffer_unmap (buffer, &map);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
2012-01-03 09:26:48 +00:00
|
|
|
return GST_PAD_PROBE_OK; /* don't drop data */
|
2008-05-14 14:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pad_added_setup_data_check_float32_8ch_cb (GstElement * deinterleave,
|
|
|
|
GstPad * pad, GstElement * pipeline)
|
|
|
|
{
|
|
|
|
GstElement *queue, *sink;
|
|
|
|
GstPad *sinkpad;
|
|
|
|
|
|
|
|
queue = gst_element_factory_make ("queue", NULL);
|
|
|
|
fail_unless (queue != NULL);
|
|
|
|
|
|
|
|
sink = gst_element_factory_make ("fakesink", NULL);
|
|
|
|
fail_unless (sink != NULL);
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), queue, sink, NULL);
|
2012-01-30 15:40:19 +00:00
|
|
|
gst_element_link_pads_full (queue, "src", sink, "sink",
|
|
|
|
GST_PAD_LINK_CHECK_NOTHING);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
2008-05-26 09:57:40 +00:00
|
|
|
sinkpad = gst_element_get_static_pad (queue, "sink");
|
2012-01-30 15:40:19 +00:00
|
|
|
|
2008-05-14 14:19:47 +00:00
|
|
|
fail_unless_equals_int (gst_pad_link (pad, sinkpad), GST_PAD_LINK_OK);
|
|
|
|
gst_object_unref (sinkpad);
|
|
|
|
|
2012-01-03 09:26:48 +00:00
|
|
|
gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_BUFFER, float_buffer_check_probe,
|
2012-02-09 17:09:45 +00:00
|
|
|
GUINT_TO_POINTER (pads_created), NULL);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
|
|
|
gst_element_set_state (sink, GST_STATE_PLAYING);
|
|
|
|
gst_element_set_state (queue, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
GST_LOG ("new pad: %s", GST_PAD_NAME (pad));
|
|
|
|
++pads_created;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElement *
|
|
|
|
make_fake_src_8chans_float32 (void)
|
|
|
|
{
|
|
|
|
GstElement *src;
|
2013-05-13 12:55:14 +00:00
|
|
|
GstPad *pad;
|
2008-05-14 14:19:47 +00:00
|
|
|
|
|
|
|
src = gst_element_factory_make ("fakesrc", "src");
|
|
|
|
fail_unless (src != NULL, "failed to create fakesrc element");
|
|
|
|
|
|
|
|
g_object_set (src, "num-buffers", 1, NULL);
|
|
|
|
g_object_set (src, "signal-handoffs", TRUE, NULL);
|
|
|
|
|
|
|
|
g_signal_connect (src, "handoff", G_CALLBACK (src_handoff_float32_8ch), NULL);
|
|
|
|
|
2013-05-13 12:55:14 +00:00
|
|
|
pad = gst_element_get_static_pad (src, "src");
|
|
|
|
gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM, src_event_probe,
|
|
|
|
NULL, NULL);
|
|
|
|
gst_object_unref (pad);
|
|
|
|
|
2008-05-14 14:19:47 +00:00
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_START_TEST (test_8_channels_float32)
|
|
|
|
{
|
|
|
|
GstElement *pipeline, *src, *deinterleave;
|
|
|
|
GstMessage *msg;
|
|
|
|
|
|
|
|
pipeline = (GstElement *) gst_pipeline_new ("pipeline");
|
|
|
|
fail_unless (pipeline != NULL, "failed to create pipeline");
|
|
|
|
|
|
|
|
src = make_fake_src_8chans_float32 ();
|
|
|
|
|
|
|
|
deinterleave = gst_element_factory_make ("deinterleave", "deinterleave");
|
|
|
|
fail_unless (deinterleave != NULL, "failed to create deinterleave element");
|
2008-05-19 12:32:06 +00:00
|
|
|
g_object_set (deinterleave, "keep-positions", TRUE, NULL);
|
2008-05-14 14:19:47 +00:00
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (pipeline), src, deinterleave, NULL);
|
|
|
|
|
|
|
|
fail_unless (gst_element_link (src, deinterleave),
|
|
|
|
"failed to link src <=> deinterleave");
|
|
|
|
|
|
|
|
g_signal_connect (deinterleave, "pad-added",
|
|
|
|
G_CALLBACK (pad_added_setup_data_check_float32_8ch_cb), pipeline);
|
|
|
|
|
|
|
|
pads_created = 0;
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
msg = gst_bus_poll (GST_ELEMENT_BUS (pipeline), GST_MESSAGE_EOS, -1);
|
|
|
|
gst_message_unref (msg);
|
|
|
|
|
|
|
|
fail_unless_equals_int (pads_created, NUM_CHANNELS);
|
|
|
|
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
gst_object_unref (pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_END_TEST;
|
|
|
|
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
static Suite *
|
|
|
|
deinterleave_suite (void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create ("deinterleave");
|
|
|
|
TCase *tc_chain = tcase_create ("general");
|
|
|
|
|
|
|
|
suite_add_tcase (s, tc_chain);
|
2008-12-16 13:14:39 +00:00
|
|
|
tcase_set_timeout (tc_chain, 180);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
tcase_add_test (tc_chain, test_create_and_unref);
|
|
|
|
tcase_add_test (tc_chain, test_2_channels);
|
|
|
|
tcase_add_test (tc_chain, test_2_channels_1_linked);
|
|
|
|
tcase_add_test (tc_chain, test_2_channels_caps_change);
|
2008-05-14 14:19:47 +00:00
|
|
|
tcase_add_test (tc_chain, test_8_channels_float32);
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_CHECK_MAIN (deinterleave);
|