2003-04-14 01:20:30 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
2005-08-24 13:32:52 +00:00
|
|
|
* Copyright (C) 2005 Thomas Vander Stichele <thomas at apestaart dot org>
|
2011-08-18 17:15:03 +00:00
|
|
|
* Copyright (C) 2011 Wim Taymans <wim.taymans at gmail dot com>
|
2003-04-14 01:20:30 +00:00
|
|
|
*
|
|
|
|
* gstaudioconvert.c: Convert audio to different audio formats automatically
|
|
|
|
*
|
|
|
|
* 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 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-04-14 01:20:30 +00:00
|
|
|
*/
|
2005-09-23 14:41:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:element-audioconvert
|
2017-01-23 19:36:11 +00:00
|
|
|
* @title: audioconvert
|
2005-09-23 14:41:31 +00:00
|
|
|
*
|
|
|
|
* Audioconvert converts raw audio buffers between various possible formats.
|
2005-11-08 12:18:14 +00:00
|
|
|
* It supports integer to float conversion, width/depth conversion,
|
2015-05-09 21:33:26 +00:00
|
|
|
* signedness and endianness conversion and channel transformations
|
|
|
|
* (ie. upmixing and downmixing), as well as dithering and noise-shaping.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2017-01-23 19:36:11 +00:00
|
|
|
* ## Example launch line
|
2008-07-10 21:06:06 +00:00
|
|
|
* |[
|
2015-05-09 21:33:26 +00:00
|
|
|
* gst-launch-1.0 -v -m audiotestsrc ! audioconvert ! audio/x-raw,format=S8,channels=2 ! level ! fakesink silent=TRUE
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* This pipeline converts audio to 8-bit. The level element shows that
|
2005-09-23 14:41:31 +00:00
|
|
|
* the output levels still match the one for a sine wave.
|
2008-07-10 21:06:06 +00:00
|
|
|
* |[
|
2015-05-09 21:33:26 +00:00
|
|
|
* gst-launch-1.0 -v -m uridecodebin uri=file:///path/to/audio.flac ! audioconvert ! vorbisenc ! oggmux ! filesink location=audio.ogg
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* The vorbis encoder takes float audio data instead of the integer data
|
2015-05-09 21:33:26 +00:00
|
|
|
* output by most other audio elements. This pipeline decodes a FLAC audio file
|
|
|
|
* (or any other audio file for which decoders are installed) and re-encodes
|
|
|
|
* it into an Ogg/Vorbis audio file.
|
2017-01-23 19:36:11 +00:00
|
|
|
*
|
2017-08-15 00:39:54 +00:00
|
|
|
* A mix matrix can be passed to audioconvert, that will govern the
|
|
|
|
* remapping of input to output channels.
|
|
|
|
* ## Example matrix generation code
|
|
|
|
* To generate the matrix using code:
|
|
|
|
*
|
|
|
|
* |[
|
|
|
|
* GValue v = G_VALUE_INIT;
|
|
|
|
* GValue v2 = G_VALUE_INIT;
|
|
|
|
* GValue v3 = G_VALUE_INIT;
|
|
|
|
*
|
|
|
|
* g_value_init (&v2, GST_TYPE_ARRAY);
|
|
|
|
* g_value_init (&v3, G_TYPE_FLOAT);
|
|
|
|
* g_value_set_float (&v3, 1);
|
|
|
|
* gst_value_array_append_value (&v2, &v3);
|
|
|
|
* g_value_unset (&v3);
|
|
|
|
* [ Repeat for as many float as your input channels - unset and reinit v3 ]
|
|
|
|
* g_value_init (&v, GST_TYPE_ARRAY);
|
|
|
|
* gst_value_array_append_value (&v, &v2);
|
|
|
|
* g_value_unset (&v2);
|
|
|
|
* [ Repeat for as many v2's as your output channels - unset and reinit v2]
|
|
|
|
* g_object_set_property (G_OBJECT (audioconvert), "mix-matrix", &v);
|
|
|
|
* g_value_unset (&v);
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* ## Example launch line
|
|
|
|
* |[
|
|
|
|
* gst-launch-1.0 audiotestsrc ! audio/x-raw, channels=4 ! audioconvert mix-matrix="<<(float)1.0, (float)0.0, (float)0.0, (float)0.0>, <(float)0.0, (float)1.0, (float)0.0, (float)0.0>>" ! audio/x-raw,channels=2 ! autoaudiosink
|
|
|
|
* ]|
|
2017-10-11 16:03:20 +00:00
|
|
|
*
|
|
|
|
* > If an empty mix matrix is specified, a (potentially truncated)
|
|
|
|
* > identity matrix will be generated.
|
2017-10-26 16:05:31 +00:00
|
|
|
*
|
|
|
|
* ## Example empty matrix generation code
|
|
|
|
* |[
|
|
|
|
* GValue v = G_VALUE_INIT;
|
|
|
|
*
|
2017-10-27 15:29:40 +00:00
|
|
|
* g_value_init (&v, GST_TYPE_ARRAY);
|
2017-10-26 16:05:31 +00:00
|
|
|
* g_object_set_property (G_OBJECT (audioconvert), "mix-matrix", &v);
|
|
|
|
* g_value_unset (&v);
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* ## Example empty matrix launch line
|
|
|
|
* |[
|
|
|
|
* gst-launch-1.0 -v audiotestsrc ! audio/x-raw,channels=8 ! audioconvert mix-matrix="<>" ! audio/x-raw,channels=16,channel-mask=\(bitmask\)0x0000000000000000 ! fakesink
|
|
|
|
* ]|
|
2005-09-23 14:41:31 +00:00
|
|
|
*/
|
2003-04-14 01:20:30 +00:00
|
|
|
|
2004-03-06 15:31:25 +00:00
|
|
|
/*
|
|
|
|
* design decisions:
|
2005-08-24 13:32:52 +00:00
|
|
|
* - audioconvert converts buffers in a set of supported caps. If it supports
|
|
|
|
* a caps, it supports conversion from these caps to any other caps it
|
2004-03-06 15:31:25 +00:00
|
|
|
* supports. (example: if it does A=>B and A=>C, it also does B=>C)
|
|
|
|
* - audioconvert does not save state between buffers. Every incoming buffer is
|
|
|
|
* converted and the converted buffer is pushed out.
|
|
|
|
* conclusion:
|
|
|
|
* audioconvert is not supposed to be a one-element-does-anything solution for
|
|
|
|
* audio conversions.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2004-02-25 18:02:19 +00:00
|
|
|
#include "config.h"
|
2003-06-29 19:46:12 +00:00
|
|
|
#endif
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
#include <string.h>
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
|
|
|
#include "gstaudioconvert.h"
|
2004-04-09 12:39:30 +00:00
|
|
|
#include "plugin.h"
|
2003-04-14 01:20:30 +00:00
|
|
|
|
gst/audioconvert/: Implement a channel mixer.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
(gst_audio_convert_link), (gst_audio_convert_change_state),
(gst_audio_convert_channels):
* gst/audioconvert/gstchannelmix.c:
(gst_audio_convert_unset_matrix),
(gst_audio_convert_fill_identical),
(gst_audio_convert_fill_compatible),
(gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
(gst_audio_convert_fill_others),
(gst_audio_convert_fill_normalize),
(gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
(gst_audio_convert_passthrough), (gst_audio_convert_mix):
* gst/audioconvert/gstchannelmix.h:
Implement a channel mixer.
2004-11-28 16:09:13 +00:00
|
|
|
GST_DEBUG_CATEGORY (audio_convert_debug);
|
2009-10-12 18:30:15 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_PERFORMANCE);
|
2015-11-06 16:29:22 +00:00
|
|
|
#define GST_CAT_DEFAULT (audio_convert_debug)
|
2004-01-12 19:46:45 +00:00
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
/*** DEFINITIONS **************************************************************/
|
|
|
|
|
|
|
|
/* type functions */
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
static void gst_audio_convert_dispose (GObject * obj);
|
2003-07-19 22:58:41 +00:00
|
|
|
|
|
|
|
/* gstreamer functions */
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static gboolean gst_audio_convert_get_unit_size (GstBaseTransform * base,
|
2011-03-27 14:35:28 +00:00
|
|
|
GstCaps * caps, gsize * size);
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static GstCaps *gst_audio_convert_transform_caps (GstBaseTransform * base,
|
2011-05-16 08:56:11 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter);
|
2012-02-22 11:27:49 +00:00
|
|
|
static GstCaps *gst_audio_convert_fixate_caps (GstBaseTransform * base,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps);
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static gboolean gst_audio_convert_set_caps (GstBaseTransform * base,
|
|
|
|
GstCaps * incaps, GstCaps * outcaps);
|
|
|
|
static GstFlowReturn gst_audio_convert_transform (GstBaseTransform * base,
|
|
|
|
GstBuffer * inbuf, GstBuffer * outbuf);
|
2016-10-19 10:21:37 +00:00
|
|
|
static GstFlowReturn gst_audio_convert_transform_ip (GstBaseTransform * base,
|
|
|
|
GstBuffer * buf);
|
2015-06-04 15:59:17 +00:00
|
|
|
static gboolean gst_audio_convert_transform_meta (GstBaseTransform * trans,
|
|
|
|
GstBuffer * outbuf, GstMeta * meta, GstBuffer * inbuf);
|
2015-10-24 17:05:10 +00:00
|
|
|
static GstFlowReturn gst_audio_convert_submit_input_buffer (GstBaseTransform *
|
|
|
|
base, gboolean is_discont, GstBuffer * input);
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
static void gst_audio_convert_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_audio_convert_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2005-08-24 13:32:52 +00:00
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
/* AudioConvert signals and args */
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-04-14 01:20:30 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2015-04-27 10:26:10 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_DITHERING,
|
|
|
|
PROP_NOISE_SHAPING,
|
2017-08-15 00:39:54 +00:00
|
|
|
PROP_MIX_MATRIX,
|
2003-04-14 01:20:30 +00:00
|
|
|
};
|
|
|
|
|
2011-04-19 09:35:53 +00:00
|
|
|
#define DEBUG_INIT \
|
2009-10-12 18:30:15 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (audio_convert_debug, "audioconvert", 0, "audio conversion element"); \
|
|
|
|
GST_DEBUG_CATEGORY_GET (GST_CAT_PERFORMANCE, "GST_PERFORMANCE");
|
2011-04-19 09:35:53 +00:00
|
|
|
#define gst_audio_convert_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstAudioConvert, gst_audio_convert,
|
2005-08-24 13:32:52 +00:00
|
|
|
GST_TYPE_BASE_TRANSFORM, DEBUG_INIT);
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
/*** GSTREAMER PROTOTYPES *****************************************************/
|
|
|
|
|
2004-03-06 13:26:12 +00:00
|
|
|
#define STATIC_CAPS \
|
2011-12-31 13:21:27 +00:00
|
|
|
GST_STATIC_CAPS (GST_AUDIO_CAPS_MAKE (GST_AUDIO_FORMATS_ALL) \
|
|
|
|
", layout = (string) interleaved")
|
2004-03-06 13:26:12 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_audio_convert_src_template =
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
STATIC_CAPS);
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_audio_convert_sink_template =
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
STATIC_CAPS);
|
2003-04-14 01:20:30 +00:00
|
|
|
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
/*** TYPE FUNCTIONS ***********************************************************/
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_audio_convert_class_init (GstAudioConvertClass * klass)
|
2003-04-14 01:20:30 +00:00
|
|
|
{
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2011-04-19 09:35:53 +00:00
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
2007-02-28 11:47:45 +00:00
|
|
|
GstBaseTransformClass *basetransform_class = GST_BASE_TRANSFORM_CLASS (klass);
|
2003-04-14 01:20:30 +00:00
|
|
|
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
gobject_class->dispose = gst_audio_convert_dispose;
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
gobject_class->set_property = gst_audio_convert_set_property;
|
|
|
|
gobject_class->get_property = gst_audio_convert_get_property;
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
|
2015-04-27 10:26:10 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_DITHERING,
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
g_param_spec_enum ("dithering", "Dithering",
|
|
|
|
"Selects between different dithering methods.",
|
2015-11-06 11:10:48 +00:00
|
|
|
GST_TYPE_AUDIO_DITHER_METHOD, GST_AUDIO_DITHER_TPDF,
|
2008-03-22 15:00:53 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
|
2015-04-27 10:26:10 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_NOISE_SHAPING,
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
g_param_spec_enum ("noise-shaping", "Noise shaping",
|
|
|
|
"Selects between different noise shaping methods.",
|
2015-11-06 11:10:48 +00:00
|
|
|
GST_TYPE_AUDIO_NOISE_SHAPING_METHOD, GST_AUDIO_NOISE_SHAPING_NONE,
|
2008-03-22 15:00:53 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
|
2017-08-15 00:39:54 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_MIX_MATRIX,
|
|
|
|
gst_param_spec_array ("mix-matrix",
|
|
|
|
"Input/output channel matrix",
|
|
|
|
"Transformation matrix for input/output channels",
|
|
|
|
gst_param_spec_array ("matrix-rows", "rows", "rows",
|
|
|
|
g_param_spec_float ("matrix-cols", "cols", "cols",
|
|
|
|
-1, 1, 0,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS),
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS),
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2016-03-03 07:46:24 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_audio_convert_src_template);
|
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_audio_convert_sink_template);
|
|
|
|
gst_element_class_set_static_metadata (element_class, "Audio converter",
|
|
|
|
"Filter/Converter/Audio", "Convert audio to different formats",
|
|
|
|
"Benjamin Otte <otte@gnome.org>");
|
2011-04-19 09:35:53 +00:00
|
|
|
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->get_unit_size =
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_get_unit_size);
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->transform_caps =
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_transform_caps);
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->fixate_caps =
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_fixate_caps);
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->set_caps =
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_set_caps);
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->transform =
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_transform);
|
2016-10-19 10:21:37 +00:00
|
|
|
basetransform_class->transform_ip =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_transform_ip);
|
2015-06-04 15:59:17 +00:00
|
|
|
basetransform_class->transform_meta =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_transform_meta);
|
2015-10-24 17:05:10 +00:00
|
|
|
basetransform_class->submit_input_buffer =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_audio_convert_submit_input_buffer);
|
check/: Add extra tests for basetransform based components.
Original commit message from CVS:
* check/Makefile.am:
* check/pipelines/simple_launch_lines.c: (setup_pipeline),
(run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
Add extra tests for basetransform based components.
Comment out the test_element_negotiation test until we decide
if it's testing correct behaviour.
* ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
(gst_visual_chain), (gst_visual_change_state):
Slightly more correct but still bogus timestamping.
Fix state change function.
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init):
* gst/audioresample/gstaudioresample.c:
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_class_init):
* gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
(gst_videoscale_prepare_size), (gst_videoscale_set_caps),
(gst_videoscale_prepare_image):
* gst/volume/gstvolume.c: (gst_volume_class_init),
(volume_transform_ip):
Basetransform updates. Enable passthrough modes.
* sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
(gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
Negotiation fix that allows the window to return to the original
size and renegotiate passthrough upstream. Extra debug output.
2005-09-09 17:53:47 +00:00
|
|
|
|
2007-02-28 11:47:45 +00:00
|
|
|
basetransform_class->passthrough_on_same_caps = TRUE;
|
2016-11-30 08:36:14 +00:00
|
|
|
basetransform_class->transform_ip_on_passthrough = FALSE;
|
2004-01-12 19:46:45 +00:00
|
|
|
}
|
|
|
|
|
2003-04-14 01:20:30 +00:00
|
|
|
static void
|
2011-04-19 09:35:53 +00:00
|
|
|
gst_audio_convert_init (GstAudioConvert * this)
|
2003-04-14 01:20:30 +00:00
|
|
|
{
|
2015-10-27 16:28:06 +00:00
|
|
|
this->dither = GST_AUDIO_DITHER_TPDF;
|
|
|
|
this->ns = GST_AUDIO_NOISE_SHAPING_NONE;
|
2017-08-15 00:39:54 +00:00
|
|
|
g_value_init (&this->mix_matrix, GST_TYPE_ARRAY);
|
2008-03-21 15:58:44 +00:00
|
|
|
|
|
|
|
gst_base_transform_set_gap_aware (GST_BASE_TRANSFORM (this), TRUE);
|
Surround sound support.
Original commit message from CVS:
* ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
(gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
* ext/alsa/gstalsa.c: (gst_alsa_get_caps):
* ext/alsa/gstalsaplugin.c: (plugin_init):
* ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
(gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
* ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
(gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
(gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
(gst_faad_change_state), (plugin_init):
* ext/faad/gstfaad.h:
* ext/vorbis/vorbis.c: (plugin_init):
* ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
* gst-libs/gst/audio/Makefile.am:
* gst-libs/gst/audio/audio.c: (plugin_init):
* gst-libs/gst/audio/multichannel.c:
(gst_audio_check_channel_positions),
(gst_audio_get_channel_positions),
(gst_audio_set_channel_positions),
(gst_audio_set_structure_channel_positions_list),
(add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
(gst_audio_fixate_channel_positions):
* gst-libs/gst/audio/multichannel.h:
* gst-libs/gst/audio/testchannels.c: (main):
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_getcaps),
(gst_audio_convert_parse_caps), (gst_audio_convert_link),
(gst_audio_convert_fixate), (gst_audio_convert_channels):
* gst/audioconvert/plugin.c: (plugin_init):
Surround sound support.
2004-11-25 20:36:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_audio_convert_dispose (GObject * obj)
|
|
|
|
{
|
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (obj);
|
|
|
|
|
2015-12-16 09:44:16 +00:00
|
|
|
if (this->convert) {
|
2015-11-06 11:46:36 +00:00
|
|
|
gst_audio_converter_free (this->convert);
|
2015-12-16 09:44:16 +00:00
|
|
|
this->convert = NULL;
|
|
|
|
}
|
2005-08-25 17:32:34 +00:00
|
|
|
|
2017-08-15 00:39:54 +00:00
|
|
|
g_value_unset (&this->mix_matrix);
|
|
|
|
|
2004-11-27 14:41:51 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (obj);
|
2003-04-14 01:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** GSTREAMER FUNCTIONS ******************************************************/
|
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
/* BaseTransform vmethods */
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static gboolean
|
|
|
|
gst_audio_convert_get_unit_size (GstBaseTransform * base, GstCaps * caps,
|
2011-03-27 14:35:28 +00:00
|
|
|
gsize * size)
|
2003-04-14 01:20:30 +00:00
|
|
|
{
|
2011-08-18 17:15:03 +00:00
|
|
|
GstAudioInfo info;
|
2003-04-14 01:20:30 +00:00
|
|
|
|
2006-08-20 13:05:44 +00:00
|
|
|
g_assert (size);
|
2003-04-14 01:20:30 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
if (!gst_audio_info_from_caps (&info, caps))
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
goto parse_error;
|
2005-05-23 17:28:02 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
*size = info.bpf;
|
|
|
|
GST_INFO_OBJECT (base, "unit_size = %" G_GSIZE_FORMAT, *size);
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
return TRUE;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
|
|
|
parse_error:
|
|
|
|
{
|
2007-02-28 11:47:45 +00:00
|
|
|
GST_INFO_OBJECT (base, "failed to parse caps to get unit_size");
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-08-24 13:32:52 +00:00
|
|
|
}
|
gst/: Don't ignore _push() return values.
Original commit message from CVS:
* gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
(gst_audio_convert_caps_remove_format_info),
(gst_audio_convert_setcaps), (gst_audio_convert_fixate),
(gst_audio_convert_change_state), (gst_audio_convert_channels):
* gst/videotestsrc/gstvideotestsrc.c:
(gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
(gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
(gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
(gst_videotestsrc_init), (gst_videotestsrc_loop):
Don't ignore _push() return values.
Make sure no processing is done when shutting down.
Videotestsrc pad activation fix.
2005-05-05 09:49:08 +00:00
|
|
|
|
2017-08-14 22:20:40 +00:00
|
|
|
static gboolean
|
|
|
|
remove_format_from_structure (GstCapsFeatures * features,
|
|
|
|
GstStructure * structure, gpointer user_data G_GNUC_UNUSED)
|
2007-03-16 17:29:09 +00:00
|
|
|
{
|
2017-08-14 22:20:40 +00:00
|
|
|
gst_structure_remove_field (structure, "format");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-07-25 12:55:56 +00:00
|
|
|
|
2017-08-14 22:20:40 +00:00
|
|
|
static gboolean
|
|
|
|
remove_channels_from_structure (GstCapsFeatures * features, GstStructure * s,
|
2017-08-15 00:39:54 +00:00
|
|
|
gpointer user_data)
|
2017-08-14 22:20:40 +00:00
|
|
|
{
|
|
|
|
guint64 mask;
|
|
|
|
gint channels;
|
2017-08-15 00:39:54 +00:00
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (user_data);
|
2017-08-14 22:20:40 +00:00
|
|
|
|
2017-08-15 00:39:54 +00:00
|
|
|
/* Only remove the channels and channel-mask for non-NONE layouts,
|
|
|
|
* or if a mix matrix was manually specified */
|
2017-10-11 16:03:20 +00:00
|
|
|
if (this->mix_matrix_was_set ||
|
2017-08-15 00:39:54 +00:00
|
|
|
!gst_structure_get (s, "channel-mask", GST_TYPE_BITMASK, &mask, NULL) ||
|
2017-08-14 22:20:40 +00:00
|
|
|
(mask != 0 || (gst_structure_get_int (s, "channels", &channels)
|
|
|
|
&& channels == 1))) {
|
|
|
|
gst_structure_remove_fields (s, "channel-mask", "channels", NULL);
|
2008-05-06 12:12:16 +00:00
|
|
|
}
|
|
|
|
|
2017-08-14 22:20:40 +00:00
|
|
|
return TRUE;
|
2008-05-06 12:12:16 +00:00
|
|
|
}
|
|
|
|
|
2017-08-15 00:39:54 +00:00
|
|
|
static gboolean
|
|
|
|
add_other_channels_to_structure (GstCapsFeatures * features, GstStructure * s,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gint other_channels = GPOINTER_TO_INT (user_data);
|
|
|
|
|
|
|
|
gst_structure_set (s, "channels", G_TYPE_INT, other_channels, NULL);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
/* The caps can be transformed into any other caps with format info removed.
|
|
|
|
* However, we should prefer passthrough, so if passthrough is possible,
|
|
|
|
* put it first in the list. */
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static GstCaps *
|
2011-08-18 17:15:03 +00:00
|
|
|
gst_audio_convert_transform_caps (GstBaseTransform * btrans,
|
2011-05-16 08:56:11 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter)
|
2005-08-24 13:32:52 +00:00
|
|
|
{
|
2011-08-18 17:15:03 +00:00
|
|
|
GstCaps *tmp, *tmp2;
|
|
|
|
GstCaps *result;
|
2017-08-15 00:39:54 +00:00
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (btrans);
|
2006-05-29 11:04:48 +00:00
|
|
|
|
2017-08-14 22:20:40 +00:00
|
|
|
tmp = gst_caps_copy (caps);
|
|
|
|
|
|
|
|
gst_caps_map_in_place (tmp, remove_format_from_structure, NULL);
|
2017-08-15 00:39:54 +00:00
|
|
|
gst_caps_map_in_place (tmp, remove_channels_from_structure, btrans);
|
|
|
|
|
|
|
|
/* We can infer the required input / output channels based on the
|
|
|
|
* matrix dimensions */
|
|
|
|
if (gst_value_array_get_size (&this->mix_matrix)) {
|
|
|
|
gint other_channels;
|
|
|
|
|
|
|
|
if (direction == GST_PAD_SRC) {
|
|
|
|
const GValue *first_row =
|
|
|
|
gst_value_array_get_value (&this->mix_matrix, 0);
|
|
|
|
other_channels = gst_value_array_get_size (first_row);
|
|
|
|
} else {
|
|
|
|
other_channels = gst_value_array_get_size (&this->mix_matrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_caps_map_in_place (tmp, add_other_channels_to_structure,
|
|
|
|
GINT_TO_POINTER (other_channels));
|
|
|
|
}
|
2006-05-29 11:04:48 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
if (filter) {
|
|
|
|
tmp2 = gst_caps_intersect_full (filter, tmp, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (tmp);
|
|
|
|
tmp = tmp2;
|
2011-05-27 10:13:14 +00:00
|
|
|
}
|
2006-05-29 11:04:48 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
result = tmp;
|
2007-03-16 16:42:23 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
GST_DEBUG_OBJECT (btrans, "transformed %" GST_PTR_FORMAT " into %"
|
|
|
|
GST_PTR_FORMAT, caps, result);
|
2011-05-16 08:56:11 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
return result;
|
2003-04-14 01:20:30 +00:00
|
|
|
}
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2016-10-14 20:31:41 +00:00
|
|
|
/* Count the number of bits set
|
|
|
|
* Optimized for the common case, assuming that the number of channels
|
|
|
|
* (i.e. bits set) is small
|
|
|
|
*/
|
2011-12-19 11:41:24 +00:00
|
|
|
static gint
|
|
|
|
n_bits_set (guint64 x)
|
2007-10-31 17:54:48 +00:00
|
|
|
{
|
2016-10-14 20:31:41 +00:00
|
|
|
gint c;
|
|
|
|
|
|
|
|
for (c = 0; x; c++)
|
|
|
|
x &= x - 1;
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
return c;
|
|
|
|
}
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2016-10-14 20:31:41 +00:00
|
|
|
/* Reduce the mask to the n_chans lowest set bits
|
|
|
|
*
|
|
|
|
* The algorithm clears the n_chans lowest set bits and subtracts the
|
|
|
|
* result from the original mask to get the desired mask.
|
|
|
|
* It is optimized for the common case where n_chans is a small
|
|
|
|
* number. In the worst case, however, it stops after 64 iterations.
|
|
|
|
*/
|
2011-12-19 11:41:24 +00:00
|
|
|
static guint64
|
|
|
|
find_suitable_mask (guint64 mask, gint n_chans)
|
|
|
|
{
|
2016-10-14 20:31:41 +00:00
|
|
|
guint64 x = mask;
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2016-10-14 20:31:41 +00:00
|
|
|
for (; x && n_chans; n_chans--)
|
|
|
|
x &= x - 1;
|
2011-12-19 11:41:24 +00:00
|
|
|
|
2016-10-14 20:31:41 +00:00
|
|
|
g_assert (x || n_chans == 0);
|
|
|
|
/* assertion fails if mask contained less bits than n_chans
|
|
|
|
* or n_chans was < 0 */
|
2011-12-19 11:41:24 +00:00
|
|
|
|
2016-10-14 20:31:41 +00:00
|
|
|
return mask - x;
|
2007-10-31 17:54:48 +00:00
|
|
|
}
|
|
|
|
|
2012-10-18 20:13:09 +00:00
|
|
|
static void
|
|
|
|
gst_audio_convert_fixate_format (GstBaseTransform * base, GstStructure * ins,
|
|
|
|
GstStructure * outs)
|
|
|
|
{
|
|
|
|
const gchar *in_format;
|
|
|
|
const GValue *format;
|
|
|
|
const GstAudioFormatInfo *in_info, *out_info = NULL;
|
2013-08-23 16:51:59 +00:00
|
|
|
GstAudioFormatFlags in_flags, out_flags = 0;
|
2013-08-23 18:05:41 +00:00
|
|
|
gint in_depth, out_depth = -1;
|
2013-08-23 17:52:44 +00:00
|
|
|
gint i, len;
|
2012-10-18 20:13:09 +00:00
|
|
|
|
|
|
|
in_format = gst_structure_get_string (ins, "format");
|
|
|
|
if (!in_format)
|
|
|
|
return;
|
|
|
|
|
|
|
|
format = gst_structure_get_value (outs, "format");
|
|
|
|
/* should not happen */
|
|
|
|
if (format == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-08-23 17:52:44 +00:00
|
|
|
/* nothing to fixate? */
|
|
|
|
if (!GST_VALUE_HOLDS_LIST (format))
|
|
|
|
return;
|
|
|
|
|
2012-10-18 20:13:09 +00:00
|
|
|
in_info =
|
|
|
|
gst_audio_format_get_info (gst_audio_format_from_string (in_format));
|
|
|
|
if (!in_info)
|
|
|
|
return;
|
|
|
|
|
2012-10-31 19:01:05 +00:00
|
|
|
in_flags = GST_AUDIO_FORMAT_INFO_FLAGS (in_info);
|
|
|
|
in_flags &= ~(GST_AUDIO_FORMAT_FLAG_UNPACK);
|
2012-11-01 13:31:29 +00:00
|
|
|
in_flags &= ~(GST_AUDIO_FORMAT_FLAG_SIGNED);
|
2012-10-31 19:01:05 +00:00
|
|
|
|
2013-08-23 18:05:41 +00:00
|
|
|
in_depth = GST_AUDIO_FORMAT_INFO_DEPTH (in_info);
|
|
|
|
|
2013-08-23 17:52:44 +00:00
|
|
|
len = gst_value_list_get_size (format);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
const GstAudioFormatInfo *t_info;
|
|
|
|
GstAudioFormatFlags t_flags;
|
2013-08-23 18:47:57 +00:00
|
|
|
gboolean t_flags_better;
|
2013-08-23 17:52:44 +00:00
|
|
|
const GValue *val;
|
|
|
|
const gchar *fname;
|
2013-08-23 18:05:41 +00:00
|
|
|
gint t_depth;
|
2013-08-23 17:52:44 +00:00
|
|
|
|
|
|
|
val = gst_value_list_get_value (format, i);
|
|
|
|
if (!G_VALUE_HOLDS_STRING (val))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
fname = g_value_get_string (val);
|
|
|
|
t_info = gst_audio_format_get_info (gst_audio_format_from_string (fname));
|
|
|
|
if (!t_info)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* accept input format immediately */
|
|
|
|
if (strcmp (fname, in_format) == 0) {
|
|
|
|
out_info = t_info;
|
|
|
|
break;
|
2012-10-18 20:13:09 +00:00
|
|
|
}
|
2013-08-23 17:52:44 +00:00
|
|
|
|
|
|
|
t_flags = GST_AUDIO_FORMAT_INFO_FLAGS (t_info);
|
|
|
|
t_flags &= ~(GST_AUDIO_FORMAT_FLAG_UNPACK);
|
|
|
|
t_flags &= ~(GST_AUDIO_FORMAT_FLAG_SIGNED);
|
|
|
|
|
2013-08-23 18:05:41 +00:00
|
|
|
t_depth = GST_AUDIO_FORMAT_INFO_DEPTH (t_info);
|
|
|
|
|
2013-08-23 18:41:32 +00:00
|
|
|
/* Any output format is better than no output format at all */
|
|
|
|
if (!out_info) {
|
|
|
|
out_info = t_info;
|
|
|
|
out_depth = t_depth;
|
|
|
|
out_flags = t_flags;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-08-23 18:47:57 +00:00
|
|
|
t_flags_better = (t_flags == in_flags && out_flags != in_flags);
|
|
|
|
|
|
|
|
if (t_depth == in_depth && (out_depth != in_depth || t_flags_better)) {
|
2013-08-23 17:52:44 +00:00
|
|
|
/* Prefer to use the first format that has the same depth with the same
|
|
|
|
* flags, and if none with the same flags exist use the first other one
|
|
|
|
* that has the same depth */
|
|
|
|
out_info = t_info;
|
2013-08-23 18:05:41 +00:00
|
|
|
out_depth = t_depth;
|
2013-08-23 17:52:44 +00:00
|
|
|
out_flags = t_flags;
|
2013-08-23 18:41:32 +00:00
|
|
|
} else if (t_depth >= in_depth && (in_depth > out_depth
|
2013-08-23 18:47:57 +00:00
|
|
|
|| (out_depth >= in_depth && t_flags_better))) {
|
2013-08-23 17:52:44 +00:00
|
|
|
/* Otherwise use the first format that has a higher depth with the same flags,
|
|
|
|
* if none with the same flags exist use the first other one that has a higher
|
|
|
|
* depth */
|
|
|
|
out_info = t_info;
|
2013-08-23 18:05:41 +00:00
|
|
|
out_depth = t_depth;
|
2013-08-23 17:52:44 +00:00
|
|
|
out_flags = t_flags;
|
2013-08-23 18:41:32 +00:00
|
|
|
} else if ((t_depth > out_depth && out_depth < in_depth)
|
2013-08-23 18:47:57 +00:00
|
|
|
|| (t_flags_better && out_depth == t_depth)) {
|
2013-08-23 17:52:44 +00:00
|
|
|
/* Else get at least the one with the highest depth, ideally with the same flags */
|
|
|
|
out_info = t_info;
|
2013-08-23 18:05:41 +00:00
|
|
|
out_depth = t_depth;
|
2013-08-23 17:52:44 +00:00
|
|
|
out_flags = t_flags;
|
|
|
|
}
|
|
|
|
|
2012-10-18 20:13:09 +00:00
|
|
|
}
|
2013-08-23 17:52:44 +00:00
|
|
|
|
|
|
|
if (out_info)
|
|
|
|
gst_structure_set (outs, "format", G_TYPE_STRING,
|
|
|
|
GST_AUDIO_FORMAT_INFO_NAME (out_info), NULL);
|
2012-10-18 20:13:09 +00:00
|
|
|
}
|
|
|
|
|
2007-10-31 17:54:48 +00:00
|
|
|
static void
|
|
|
|
gst_audio_convert_fixate_channels (GstBaseTransform * base, GstStructure * ins,
|
|
|
|
GstStructure * outs)
|
|
|
|
{
|
|
|
|
gint in_chans, out_chans;
|
2011-12-19 11:41:24 +00:00
|
|
|
guint64 in_mask = 0, out_mask = 0;
|
|
|
|
gboolean has_in_mask = FALSE, has_out_mask = FALSE;
|
2007-10-31 17:54:48 +00:00
|
|
|
|
|
|
|
if (!gst_structure_get_int (ins, "channels", &in_chans))
|
|
|
|
return; /* this shouldn't really happen, should it? */
|
|
|
|
|
|
|
|
if (!gst_structure_has_field (outs, "channels")) {
|
|
|
|
/* we could try to get the implied number of channels from the layout,
|
|
|
|
* but that seems overdoing it for a somewhat exotic corner case */
|
2011-12-19 11:41:24 +00:00
|
|
|
gst_structure_remove_field (outs, "channel-mask");
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ok, let's fixate the channels if they are not fixated yet */
|
|
|
|
gst_structure_fixate_field_nearest_int (outs, "channels", in_chans);
|
|
|
|
|
|
|
|
if (!gst_structure_get_int (outs, "channels", &out_chans)) {
|
|
|
|
/* shouldn't really happen ... */
|
2011-12-19 11:41:24 +00:00
|
|
|
gst_structure_remove_field (outs, "channel-mask");
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
/* get the channel layout of the output if any */
|
|
|
|
has_out_mask = gst_structure_has_field (outs, "channel-mask");
|
|
|
|
if (has_out_mask) {
|
|
|
|
gst_structure_get (outs, "channel-mask", GST_TYPE_BITMASK, &out_mask, NULL);
|
|
|
|
} else {
|
|
|
|
/* channels == 1 => MONO */
|
|
|
|
if (out_chans == 2) {
|
|
|
|
out_mask =
|
2012-01-04 09:26:33 +00:00
|
|
|
GST_AUDIO_CHANNEL_POSITION_MASK (FRONT_LEFT) |
|
|
|
|
GST_AUDIO_CHANNEL_POSITION_MASK (FRONT_RIGHT);
|
2011-12-19 11:41:24 +00:00
|
|
|
has_out_mask = TRUE;
|
2012-01-04 09:26:33 +00:00
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, out_mask,
|
|
|
|
NULL);
|
2011-12-19 11:41:24 +00:00
|
|
|
}
|
|
|
|
}
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2008-05-20 12:15:34 +00:00
|
|
|
/* get the channel layout of the input if any */
|
2011-12-19 11:41:24 +00:00
|
|
|
has_in_mask = gst_structure_has_field (ins, "channel-mask");
|
|
|
|
if (has_in_mask) {
|
|
|
|
gst_structure_get (ins, "channel-mask", GST_TYPE_BITMASK, &in_mask, NULL);
|
|
|
|
} else {
|
|
|
|
/* channels == 1 => MONO */
|
|
|
|
if (in_chans == 2) {
|
|
|
|
in_mask =
|
2012-01-04 09:26:33 +00:00
|
|
|
GST_AUDIO_CHANNEL_POSITION_MASK (FRONT_LEFT) |
|
|
|
|
GST_AUDIO_CHANNEL_POSITION_MASK (FRONT_RIGHT);
|
2011-12-19 11:41:24 +00:00
|
|
|
has_in_mask = TRUE;
|
|
|
|
} else if (in_chans > 2)
|
|
|
|
g_warning ("%s: Upstream caps contain no channel mask",
|
|
|
|
GST_ELEMENT_NAME (base));
|
2007-10-31 17:54:48 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
if (!has_out_mask && out_chans == 1 && (in_chans != out_chans
|
|
|
|
|| !has_in_mask))
|
|
|
|
return; /* nothing to do, default layout will be assumed */
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
if (in_chans == out_chans && (has_in_mask || in_chans == 1)) {
|
2007-10-31 17:54:48 +00:00
|
|
|
/* same number of channels and no output layout: just use input layout */
|
2011-12-19 11:41:24 +00:00
|
|
|
if (!has_out_mask) {
|
|
|
|
/* in_chans == 1 handled above already */
|
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, in_mask, NULL);
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
/* If both masks are the same we're done, this includes the NONE layout case */
|
|
|
|
if (in_mask == out_mask)
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
/* if output layout is fixed already and looks sane, we're done */
|
|
|
|
if (n_bits_set (out_mask) == out_chans)
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-19 11:41:24 +00:00
|
|
|
if (n_bits_set (out_mask) < in_chans) {
|
|
|
|
/* Not much we can do here, this shouldn't just happen */
|
|
|
|
g_warning ("%s: Invalid downstream channel-mask with too few bits set",
|
|
|
|
GST_ELEMENT_NAME (base));
|
|
|
|
} else {
|
|
|
|
guint64 intersection;
|
|
|
|
|
|
|
|
/* if the output layout is not fixed, check if the output layout contains
|
|
|
|
* the input layout */
|
|
|
|
intersection = in_mask & out_mask;
|
|
|
|
if (n_bits_set (intersection) >= in_chans) {
|
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, in_mask,
|
|
|
|
NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* output layout is not fixed and does not contain the input layout, so
|
|
|
|
* just pick the first possibility */
|
|
|
|
intersection = find_suitable_mask (out_mask, out_chans);
|
|
|
|
if (intersection) {
|
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, intersection,
|
|
|
|
NULL);
|
|
|
|
return;
|
|
|
|
}
|
2007-10-31 17:54:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ... else fall back to default layout (NB: out_layout is NULL here) */
|
|
|
|
GST_WARNING_OBJECT (base, "unexpected output channel layout");
|
2011-12-19 11:41:24 +00:00
|
|
|
} else {
|
|
|
|
guint64 intersection;
|
|
|
|
|
|
|
|
/* number of input channels != number of output channels:
|
|
|
|
* if this value contains a list of channel layouts (or even worse: a list
|
|
|
|
* with another list), just pick the first value and repeat until we find a
|
|
|
|
* channel position array or something else that's not a list; we assume
|
|
|
|
* the input if half-way sane and don't try to fall back on other list items
|
|
|
|
* if the first one is something unexpected or non-channel-pos-array-y */
|
|
|
|
if (n_bits_set (out_mask) >= out_chans) {
|
|
|
|
intersection = find_suitable_mask (out_mask, out_chans);
|
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, intersection,
|
|
|
|
NULL);
|
2007-10-31 17:54:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* what now?! Just ignore what we're given and use default positions */
|
|
|
|
GST_WARNING_OBJECT (base, "invalid or unexpected channel-positions");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* missing or invalid output layout and we can't use the input layout for
|
|
|
|
* one reason or another, so just pick a default layout (we could be smarter
|
|
|
|
* and try to add/remove channels from the input layout, or pick a default
|
|
|
|
* layout based on LFE-presence in input layout, but let's save that for
|
2016-06-29 16:14:51 +00:00
|
|
|
* another day). For mono, no mask is required and the fallback mask is 0 */
|
|
|
|
if (out_chans > 1
|
2015-11-05 11:42:56 +00:00
|
|
|
&& (out_mask = gst_audio_channel_get_fallback_mask (out_chans))) {
|
2007-10-31 17:54:48 +00:00
|
|
|
GST_DEBUG_OBJECT (base, "using default channel layout as fallback");
|
2011-12-19 11:41:24 +00:00
|
|
|
gst_structure_set (outs, "channel-mask", GST_TYPE_BITMASK, out_mask, NULL);
|
2016-06-29 16:14:51 +00:00
|
|
|
} else if (out_chans > 1) {
|
2011-12-19 11:41:24 +00:00
|
|
|
GST_ERROR_OBJECT (base, "Have no default layout for %d channels",
|
|
|
|
out_chans);
|
2007-10-31 17:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
/* try to keep as many of the structure members the same by fixating the
|
|
|
|
* possible ranges; this way we convert the least amount of things as possible
|
|
|
|
*/
|
2012-02-22 11:27:49 +00:00
|
|
|
static GstCaps *
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
gst_audio_convert_fixate_caps (GstBaseTransform * base,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps)
|
2004-01-15 21:05:17 +00:00
|
|
|
{
|
2005-08-24 13:32:52 +00:00
|
|
|
GstStructure *ins, *outs;
|
2012-02-27 11:52:07 +00:00
|
|
|
GstCaps *result;
|
2005-08-24 13:32:52 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (base, "trying to fixate othercaps %" GST_PTR_FORMAT
|
|
|
|
" based on caps %" GST_PTR_FORMAT, othercaps, caps);
|
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
result = gst_caps_intersect (othercaps, caps);
|
|
|
|
if (gst_caps_is_empty (result)) {
|
2017-08-14 22:20:40 +00:00
|
|
|
GstCaps *removed = gst_caps_copy (caps);
|
2012-07-25 12:55:56 +00:00
|
|
|
|
2012-03-30 14:56:40 +00:00
|
|
|
if (result)
|
|
|
|
gst_caps_unref (result);
|
2017-08-14 22:20:40 +00:00
|
|
|
gst_caps_map_in_place (removed, remove_format_from_structure, NULL);
|
2012-07-25 12:55:56 +00:00
|
|
|
result = gst_caps_intersect (othercaps, removed);
|
|
|
|
gst_caps_unref (removed);
|
|
|
|
if (gst_caps_is_empty (result)) {
|
|
|
|
if (result)
|
|
|
|
gst_caps_unref (result);
|
|
|
|
result = othercaps;
|
2012-09-06 11:58:28 +00:00
|
|
|
} else {
|
|
|
|
gst_caps_unref (othercaps);
|
2012-07-25 12:55:56 +00:00
|
|
|
}
|
2012-02-27 11:52:07 +00:00
|
|
|
} else {
|
|
|
|
gst_caps_unref (othercaps);
|
|
|
|
}
|
2005-08-24 13:32:52 +00:00
|
|
|
|
2012-07-25 12:55:56 +00:00
|
|
|
GST_DEBUG_OBJECT (base, "now fixating %" GST_PTR_FORMAT, result);
|
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
/* fixate remaining fields */
|
|
|
|
result = gst_caps_make_writable (result);
|
2007-10-31 17:54:48 +00:00
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
ins = gst_caps_get_structure (caps, 0);
|
|
|
|
outs = gst_caps_get_structure (result, 0);
|
2011-08-18 17:15:03 +00:00
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
gst_audio_convert_fixate_channels (base, ins, outs);
|
2012-10-18 20:13:09 +00:00
|
|
|
gst_audio_convert_fixate_format (base, ins, outs);
|
|
|
|
|
|
|
|
/* fixate remaining */
|
2012-03-11 18:04:41 +00:00
|
|
|
result = gst_caps_fixate (result);
|
2011-11-10 14:24:30 +00:00
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
GST_DEBUG_OBJECT (base, "fixated othercaps to %" GST_PTR_FORMAT, result);
|
2012-02-22 11:27:49 +00:00
|
|
|
|
2012-02-27 11:52:07 +00:00
|
|
|
return result;
|
2005-03-31 09:43:49 +00:00
|
|
|
}
|
|
|
|
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static gboolean
|
|
|
|
gst_audio_convert_set_caps (GstBaseTransform * base, GstCaps * incaps,
|
2005-08-24 13:32:52 +00:00
|
|
|
GstCaps * outcaps)
|
2005-03-31 09:43:49 +00:00
|
|
|
{
|
2005-08-24 13:32:52 +00:00
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (base);
|
2011-08-18 17:15:03 +00:00
|
|
|
GstAudioInfo in_info;
|
|
|
|
GstAudioInfo out_info;
|
2016-10-19 10:21:37 +00:00
|
|
|
gboolean in_place;
|
2017-08-15 00:39:54 +00:00
|
|
|
GstStructure *config;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
GST_DEBUG_OBJECT (base, "incaps %" GST_PTR_FORMAT ", outcaps %"
|
|
|
|
GST_PTR_FORMAT, incaps, outcaps);
|
|
|
|
|
2015-11-06 11:10:48 +00:00
|
|
|
if (this->convert) {
|
|
|
|
gst_audio_converter_free (this->convert);
|
|
|
|
this->convert = NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
if (!gst_audio_info_from_caps (&in_info, incaps))
|
|
|
|
goto invalid_in;
|
|
|
|
if (!gst_audio_info_from_caps (&out_info, outcaps))
|
|
|
|
goto invalid_out;
|
2005-08-24 13:32:52 +00:00
|
|
|
|
2017-08-15 00:39:54 +00:00
|
|
|
config = gst_structure_new ("GstAudioConverterConfig",
|
|
|
|
GST_AUDIO_CONVERTER_OPT_DITHER_METHOD, GST_TYPE_AUDIO_DITHER_METHOD,
|
|
|
|
this->dither,
|
|
|
|
GST_AUDIO_CONVERTER_OPT_NOISE_SHAPING_METHOD,
|
|
|
|
GST_TYPE_AUDIO_NOISE_SHAPING_METHOD, this->ns, NULL);
|
|
|
|
|
2017-10-11 16:03:20 +00:00
|
|
|
if (this->mix_matrix_was_set)
|
2017-08-15 00:39:54 +00:00
|
|
|
gst_structure_set_value (config, GST_AUDIO_CONVERTER_OPT_MIX_MATRIX,
|
|
|
|
&this->mix_matrix);
|
|
|
|
|
|
|
|
this->convert = gst_audio_converter_new (0, &in_info, &out_info, config);
|
2015-11-06 11:10:48 +00:00
|
|
|
|
|
|
|
if (this->convert == NULL)
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
goto no_converter;
|
2005-08-24 13:32:52 +00:00
|
|
|
|
2017-01-02 12:26:36 +00:00
|
|
|
in_place = gst_audio_converter_supports_inplace (this->convert);
|
|
|
|
gst_base_transform_set_in_place (base, in_place);
|
|
|
|
|
2015-11-06 11:10:48 +00:00
|
|
|
this->in_info = in_info;
|
|
|
|
this->out_info = out_info;
|
|
|
|
|
2005-08-24 13:32:52 +00:00
|
|
|
return TRUE;
|
2005-03-31 09:43:49 +00:00
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
/* ERRORS */
|
|
|
|
invalid_in:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (base, "invalid input caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
invalid_out:
|
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (base, "invalid output caps");
|
|
|
|
return FALSE;
|
|
|
|
}
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
no_converter:
|
|
|
|
{
|
2015-11-06 11:10:48 +00:00
|
|
|
GST_ERROR_OBJECT (base, "could not make converter");
|
2004-05-25 20:14:10 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-04-14 01:20:30 +00:00
|
|
|
}
|
2003-07-19 22:58:41 +00:00
|
|
|
|
2016-10-19 10:21:37 +00:00
|
|
|
/* if called through gst_audio_convert_transform_ip() inbuf == outbuf */
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_audio_convert_transform (GstBaseTransform * base, GstBuffer * inbuf,
|
|
|
|
GstBuffer * outbuf)
|
2003-04-14 01:20:30 +00:00
|
|
|
{
|
2011-03-27 14:35:28 +00:00
|
|
|
GstFlowReturn ret;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (base);
|
2016-11-30 08:48:40 +00:00
|
|
|
GstMapInfo srcmap = { NULL, }, dstmap;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
gint insize, outsize;
|
2013-10-04 11:57:51 +00:00
|
|
|
gboolean inbuf_writable;
|
2015-11-06 11:10:48 +00:00
|
|
|
GstAudioConverterFlags flags;
|
2016-01-08 16:17:44 +00:00
|
|
|
gsize samples;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
|
|
|
/* get amount of samples to convert. */
|
2015-11-06 11:10:48 +00:00
|
|
|
samples = gst_buffer_get_size (inbuf) / this->in_info.bpf;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
|
|
|
/* get in/output sizes, to see if the buffers we got are of correct
|
|
|
|
* sizes */
|
2015-11-06 11:46:36 +00:00
|
|
|
insize = samples * this->in_info.bpf;
|
|
|
|
outsize = samples * this->out_info.bpf;
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
|
2007-01-30 11:29:17 +00:00
|
|
|
if (insize == 0 || outsize == 0)
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
|
2017-06-02 07:41:59 +00:00
|
|
|
gst_buffer_resize (outbuf, 0, outsize);
|
|
|
|
|
2011-03-27 14:35:28 +00:00
|
|
|
/* get src and dst data */
|
2016-11-30 08:48:40 +00:00
|
|
|
if (inbuf != outbuf) {
|
|
|
|
inbuf_writable = gst_buffer_is_writable (inbuf)
|
|
|
|
&& gst_buffer_n_memory (inbuf) == 1
|
|
|
|
&& gst_memory_is_writable (gst_buffer_peek_memory (inbuf, 0));
|
|
|
|
|
2016-11-30 08:55:16 +00:00
|
|
|
if (!gst_buffer_map (inbuf, &srcmap,
|
|
|
|
inbuf_writable ? GST_MAP_READWRITE : GST_MAP_READ))
|
|
|
|
goto inmap_error;
|
2016-11-30 08:48:40 +00:00
|
|
|
} else {
|
|
|
|
inbuf_writable = TRUE;
|
|
|
|
}
|
2016-11-30 08:55:16 +00:00
|
|
|
if (!gst_buffer_map (outbuf, &dstmap, GST_MAP_WRITE))
|
|
|
|
goto outmap_error;
|
2011-03-27 14:35:28 +00:00
|
|
|
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
/* check in and outsize */
|
2016-11-30 08:48:40 +00:00
|
|
|
if (inbuf != outbuf) {
|
|
|
|
if (srcmap.size < insize)
|
|
|
|
goto wrong_size;
|
|
|
|
}
|
2012-01-20 15:11:54 +00:00
|
|
|
if (dstmap.size < outsize)
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
goto wrong_size;
|
|
|
|
|
|
|
|
/* and convert the samples */
|
2015-11-06 11:10:48 +00:00
|
|
|
flags = 0;
|
|
|
|
if (inbuf_writable)
|
2016-01-08 16:34:50 +00:00
|
|
|
flags |= GST_AUDIO_CONVERTER_FLAG_IN_WRITABLE;
|
2015-11-06 11:10:48 +00:00
|
|
|
|
2008-03-21 15:58:44 +00:00
|
|
|
if (!GST_BUFFER_FLAG_IS_SET (inbuf, GST_BUFFER_FLAG_GAP)) {
|
2015-12-29 16:14:54 +00:00
|
|
|
gpointer in[1] = { srcmap.data };
|
|
|
|
gpointer out[1] = { dstmap.data };
|
|
|
|
|
2015-12-10 16:46:26 +00:00
|
|
|
if (!gst_audio_converter_samples (this->convert, flags,
|
2016-11-30 08:48:40 +00:00
|
|
|
inbuf != outbuf ? in : out, samples, out, samples))
|
2008-03-21 15:58:44 +00:00
|
|
|
goto convert_error;
|
|
|
|
} else {
|
|
|
|
/* Create silence buffer */
|
2015-11-06 11:10:48 +00:00
|
|
|
gst_audio_format_fill_silence (this->out_info.finfo, dstmap.data, outsize);
|
2008-03-21 15:58:44 +00:00
|
|
|
}
|
2011-03-27 14:35:28 +00:00
|
|
|
ret = GST_FLOW_OK;
|
2005-12-02 10:17:35 +00:00
|
|
|
|
2011-03-27 14:35:28 +00:00
|
|
|
done:
|
2012-01-20 15:11:54 +00:00
|
|
|
gst_buffer_unmap (outbuf, &dstmap);
|
2016-11-30 08:48:40 +00:00
|
|
|
if (inbuf != outbuf)
|
|
|
|
gst_buffer_unmap (inbuf, &srcmap);
|
2003-04-14 01:20:30 +00:00
|
|
|
|
2011-03-27 14:35:28 +00:00
|
|
|
return ret;
|
2003-07-19 22:58:41 +00:00
|
|
|
|
gst/audioconvert/: Cleanups, librarify a bit, optimize, better negotiation and more.
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (if), (float),
(audio_convert_get_func_index), (check_default),
(audio_convert_clean_fmt), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_get_sizes),
(get_temp_buffer), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_class_init), (gst_audio_convert_init),
(gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
(gst_audio_convert_get_unit_size),
(gst_audio_convert_transform_caps),
(gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
(gst_audio_convert_transform_ip), (gst_audio_convert_transform):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
(gst_channel_mix_fill_identical),
(gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
(gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
(gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
(gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
(gst_channel_mix_mix):
* gst/audioconvert/gstchannelmix.h:
Cleanups, librarify a bit, optimize, better negotiation and more.
2005-08-26 15:43:56 +00:00
|
|
|
/* ERRORS */
|
|
|
|
wrong_size:
|
|
|
|
{
|
2007-03-09 12:22:53 +00:00
|
|
|
GST_ELEMENT_ERROR (this, STREAM, FORMAT,
|
|
|
|
(NULL),
|
2011-08-09 14:39:31 +00:00
|
|
|
("input/output buffers are of wrong size in: %" G_GSIZE_FORMAT " < %d"
|
|
|
|
" or out: %" G_GSIZE_FORMAT " < %d",
|
2012-01-20 15:11:54 +00:00
|
|
|
srcmap.size, insize, dstmap.size, outsize));
|
2011-03-27 14:35:28 +00:00
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
goto done;
|
2005-12-02 10:17:35 +00:00
|
|
|
}
|
|
|
|
convert_error:
|
|
|
|
{
|
2007-03-09 12:22:53 +00:00
|
|
|
GST_ELEMENT_ERROR (this, STREAM, FORMAT,
|
|
|
|
(NULL), ("error while converting"));
|
2011-03-27 14:35:28 +00:00
|
|
|
ret = GST_FLOW_ERROR;
|
|
|
|
goto done;
|
2003-04-14 01:20:30 +00:00
|
|
|
}
|
2016-11-30 08:55:16 +00:00
|
|
|
inmap_error:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (this, STREAM, FORMAT,
|
|
|
|
(NULL), ("failed to map input buffer"));
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
outmap_error:
|
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (this, STREAM, FORMAT,
|
|
|
|
(NULL), ("failed to map output buffer"));
|
|
|
|
if (inbuf != outbuf)
|
|
|
|
gst_buffer_unmap (inbuf, &srcmap);
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
2003-04-14 01:20:30 +00:00
|
|
|
}
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
|
2016-10-19 10:21:37 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_audio_convert_transform_ip (GstBaseTransform * base, GstBuffer * buf)
|
|
|
|
{
|
|
|
|
return gst_audio_convert_transform (base, buf, buf);
|
|
|
|
}
|
|
|
|
|
2015-06-04 15:59:17 +00:00
|
|
|
static gboolean
|
|
|
|
gst_audio_convert_transform_meta (GstBaseTransform * trans, GstBuffer * outbuf,
|
|
|
|
GstMeta * meta, GstBuffer * inbuf)
|
|
|
|
{
|
|
|
|
const GstMetaInfo *info = meta->info;
|
|
|
|
const gchar *const *tags;
|
|
|
|
|
|
|
|
tags = gst_meta_api_type_get_tags (info->api);
|
|
|
|
|
2015-06-29 11:06:49 +00:00
|
|
|
if (!tags || (g_strv_length ((gchar **) tags) == 1
|
|
|
|
&& gst_meta_api_type_has_tag (info->api,
|
|
|
|
g_quark_from_string (GST_META_TAG_AUDIO_STR))))
|
2015-06-04 15:59:17 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2015-10-24 17:05:10 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_audio_convert_submit_input_buffer (GstBaseTransform * base,
|
|
|
|
gboolean is_discont, GstBuffer * input)
|
|
|
|
{
|
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (base);
|
|
|
|
|
|
|
|
if (base->segment.format == GST_FORMAT_TIME) {
|
|
|
|
input =
|
2015-11-06 11:10:48 +00:00
|
|
|
gst_audio_buffer_clip (input, &base->segment, this->in_info.rate,
|
|
|
|
this->in_info.bpf);
|
2015-10-24 17:05:10 +00:00
|
|
|
|
|
|
|
if (!input)
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_BASE_TRANSFORM_CLASS (parent_class)->submit_input_buffer (base,
|
|
|
|
is_discont, input);
|
|
|
|
}
|
|
|
|
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
static void
|
|
|
|
gst_audio_convert_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2015-04-27 10:26:10 +00:00
|
|
|
case PROP_DITHERING:
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
this->dither = g_value_get_enum (value);
|
|
|
|
break;
|
2015-04-27 10:26:10 +00:00
|
|
|
case PROP_NOISE_SHAPING:
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
this->ns = g_value_get_enum (value);
|
|
|
|
break;
|
2017-08-15 00:39:54 +00:00
|
|
|
case PROP_MIX_MATRIX:
|
|
|
|
if (!gst_value_array_get_size (value)) {
|
2017-10-11 16:03:20 +00:00
|
|
|
g_value_copy (value, &this->mix_matrix);
|
|
|
|
this->mix_matrix_was_set = TRUE;
|
2017-08-15 00:39:54 +00:00
|
|
|
} else {
|
|
|
|
const GValue *first_row = gst_value_array_get_value (value, 0);
|
|
|
|
|
|
|
|
if (gst_value_array_get_size (first_row)) {
|
|
|
|
if (gst_value_array_get_size (&this->mix_matrix))
|
|
|
|
g_value_unset (&this->mix_matrix);
|
|
|
|
|
|
|
|
g_value_copy (value, &this->mix_matrix);
|
2017-10-11 16:03:20 +00:00
|
|
|
this->mix_matrix_was_set = TRUE;
|
2017-08-15 00:39:54 +00:00
|
|
|
} else {
|
|
|
|
g_warning ("Empty mix matrix's first row");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_audio_convert_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstAudioConvert *this = GST_AUDIO_CONVERT (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2015-04-27 10:26:10 +00:00
|
|
|
case PROP_DITHERING:
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
g_value_set_enum (value, this->dither);
|
|
|
|
break;
|
2015-04-27 10:26:10 +00:00
|
|
|
case PROP_NOISE_SHAPING:
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
g_value_set_enum (value, this->ns);
|
|
|
|
break;
|
2017-08-15 00:39:54 +00:00
|
|
|
case PROP_MIX_MATRIX:
|
2017-10-11 16:03:20 +00:00
|
|
|
if (this->mix_matrix_was_set)
|
2017-08-15 00:39:54 +00:00
|
|
|
g_value_copy (&this->mix_matrix, value);
|
|
|
|
break;
|
gst/audioconvert/: Implement dithering and noise shaping in audioconvert. By default now
Original commit message from CVS:
* gst/audioconvert/Makefile.am:
* gst/audioconvert/audioconvert.c: (audio_convert_get_func_index),
(check_default), (audio_convert_prepare_context),
(audio_convert_clean_context), (audio_convert_convert):
* gst/audioconvert/audioconvert.h:
* gst/audioconvert/gstaudioconvert.c:
(gst_audio_convert_dithering_get_type),
(gst_audio_convert_ns_get_type), (gst_audio_convert_class_init),
(gst_audio_convert_init), (gst_audio_convert_set_caps),
(gst_audio_convert_set_property), (gst_audio_convert_get_property):
* gst/audioconvert/gstaudioconvert.h:
* gst/audioconvert/gstaudioquantize.c:
(gst_audio_quantize_setup_noise_shaping),
(gst_audio_quantize_free_noise_shaping),
(gst_audio_quantize_setup_dither),
(gst_audio_quantize_free_dither),
(gst_audio_quantize_setup_quantize_func),
(gst_audio_quantize_setup), (gst_audio_quantize_free):
* gst/audioconvert/gstaudioquantize.h:
Implement dithering and noise shaping in audioconvert. By default now
TPDF dithering (and no noise shaping) will be used when converting
from a higher bit depth to 20 bit depth or smaller, otherwise
everything will be as it is now.
For the last audioconvert in a pipeline it would make sense to
use some kind of noise shaping, enabling it by default for all
conversions would give undesired results though. Fixes #360246.
* tests/check/elements/audioconvert.c: (setup_audioconvert),
(GST_START_TEST):
Adjust unit test for the new audioconvert.
2007-06-28 20:37:58 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|