mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
audiomixer: Add new element based on adder that does synchronized audio mixing
This commit is contained in:
parent
30ed37657b
commit
caeaade700
9 changed files with 6352 additions and 0 deletions
|
@ -358,6 +358,7 @@ AG_GST_CHECK_PLUGIN(adpcmenc)
|
|||
AG_GST_CHECK_PLUGIN(aiff)
|
||||
AG_GST_CHECK_PLUGIN(asfmux)
|
||||
AG_GST_CHECK_PLUGIN(audiofxbad)
|
||||
AG_GST_CHECK_PLUGIN(audiomixer)
|
||||
AG_GST_CHECK_PLUGIN(audiovisualizers)
|
||||
AG_GST_CHECK_PLUGIN(autoconvert)
|
||||
AG_GST_CHECK_PLUGIN(bayer)
|
||||
|
@ -2343,6 +2344,7 @@ gst/adpcmenc/Makefile
|
|||
gst/aiff/Makefile
|
||||
gst/asfmux/Makefile
|
||||
gst/audiofxbad/Makefile
|
||||
gst/audiomixer/Makefile
|
||||
gst/audiovisualizers/Makefile
|
||||
gst/autoconvert/Makefile
|
||||
gst/bayer/Makefile
|
||||
|
|
18
gst/audiomixer/Makefile.am
Normal file
18
gst/audiomixer/Makefile.am
Normal file
|
@ -0,0 +1,18 @@
|
|||
plugin_LTLIBRARIES = libgstaudiomixer.la
|
||||
|
||||
ORC_SOURCE=gstaudiomixerorc
|
||||
include $(top_srcdir)/common/orc.mak
|
||||
|
||||
|
||||
libgstaudiomixer_la_SOURCES = gstaudiomixer.c
|
||||
nodist_libgstaudiomixer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
||||
libgstaudiomixer_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(ORC_CFLAGS)
|
||||
libgstaudiomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiomixer_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-@GST_API_VERSION@ \
|
||||
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
||||
libgstaudiomixer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||
|
||||
noinst_HEADERS = gstaudiomixer.h
|
||||
|
1963
gst/audiomixer/gstaudiomixer.c
Normal file
1963
gst/audiomixer/gstaudiomixer.c
Normal file
File diff suppressed because it is too large
Load diff
126
gst/audiomixer/gstaudiomixer.h
Normal file
126
gst/audiomixer/gstaudiomixer.h
Normal file
|
@ -0,0 +1,126 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
||||
* 2000 Wim Taymans <wtay@chello.be>
|
||||
* Copyright (C) 2013 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
*
|
||||
* gstaudiomixer.h: Header for GstAudioMixer element
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_AUDIO_MIXER_H__
|
||||
#define __GST_AUDIO_MIXER_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstcollectpads.h>
|
||||
#include <gst/audio/audio.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GST_TYPE_AUDIO_MIXER (gst_audiomixer_get_type())
|
||||
#define GST_AUDIO_MIXER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AUDIO_MIXER,GstAudioMixer))
|
||||
#define GST_IS_AUDIO_MIXER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AUDIO_MIXER))
|
||||
#define GST_AUDIO_MIXER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass) ,GST_TYPE_AUDIO_MIXER,GstAudioMixerClass))
|
||||
#define GST_IS_AUDIO_MIXER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass) ,GST_TYPE_AUDIO_MIXER))
|
||||
#define GST_AUDIO_MIXER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj) ,GST_TYPE_AUDIO_MIXER,GstAudioMixerClass))
|
||||
|
||||
typedef struct _GstAudioMixer GstAudioMixer;
|
||||
typedef struct _GstAudioMixerClass GstAudioMixerClass;
|
||||
|
||||
typedef struct _GstAudioMixerPad GstAudioMixerPad;
|
||||
typedef struct _GstAudioMixerPadClass GstAudioMixerPadClass;
|
||||
|
||||
/**
|
||||
* GstAudioMixer:
|
||||
*
|
||||
* The audiomixer object structure.
|
||||
*/
|
||||
struct _GstAudioMixer {
|
||||
GstElement element;
|
||||
|
||||
GstPad *srcpad;
|
||||
GstCollectPads *collect;
|
||||
/* pad counter, used for creating unique request pads */
|
||||
gint padcount;
|
||||
|
||||
/* the next are valid for both int and float */
|
||||
GstAudioInfo info;
|
||||
|
||||
/* counters to keep track of timestamps */
|
||||
gint64 offset;
|
||||
/* Buffer starting at offset containing block_size samples */
|
||||
GstBuffer *current_buffer;
|
||||
|
||||
/* sink event handling */
|
||||
GstSegment segment;
|
||||
volatile gboolean segment_pending;
|
||||
volatile gboolean flush_stop_pending;
|
||||
|
||||
/* current caps */
|
||||
GstCaps *current_caps;
|
||||
|
||||
/* target caps (set via property) */
|
||||
GstCaps *filter_caps;
|
||||
|
||||
GstClockTime alignment_threshold;
|
||||
GstClockTime discont_wait;
|
||||
|
||||
/* Last time we noticed a discont */
|
||||
GstClockTime discont_time;
|
||||
|
||||
/* Size in samples that is output per buffer */
|
||||
guint blocksize;
|
||||
|
||||
/* Pending inline events */
|
||||
GList *pending_events;
|
||||
|
||||
gboolean send_stream_start;
|
||||
gboolean send_caps;
|
||||
};
|
||||
|
||||
struct _GstAudioMixerClass {
|
||||
GstElementClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_audiomixer_get_type (void);
|
||||
|
||||
#define GST_TYPE_AUDIO_MIXER_PAD (gst_audiomixer_pad_get_type())
|
||||
#define GST_AUDIO_MIXER_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AUDIO_MIXER_PAD,GstAudioMixerPad))
|
||||
#define GST_IS_AUDIO_MIXER_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AUDIO_MIXER_PAD))
|
||||
#define GST_AUDIO_MIXER_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass) ,GST_TYPE_AUDIO_MIXER_PAD,GstAudioMixerPadClass))
|
||||
#define GST_IS_AUDIO_MIXER_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass) ,GST_TYPE_AUDIO_MIXER_PAD))
|
||||
#define GST_AUDIO_MIXER_PAD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj) ,GST_TYPE_AUDIO_MIXER_PAD,GstAudioMixerPadClass))
|
||||
|
||||
struct _GstAudioMixerPad {
|
||||
GstPad parent;
|
||||
|
||||
gdouble volume;
|
||||
gint volume_i32;
|
||||
gint volume_i16;
|
||||
gint volume_i8;
|
||||
gboolean mute;
|
||||
};
|
||||
|
||||
struct _GstAudioMixerPadClass {
|
||||
GstPadClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_audiomixer_pad_get_type (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
||||
#endif /* __GST_AUDIO_MIXER_H__ */
|
2661
gst/audiomixer/gstaudiomixerorc-dist.c
Normal file
2661
gst/audiomixer/gstaudiomixerorc-dist.c
Normal file
File diff suppressed because it is too large
Load diff
106
gst/audiomixer/gstaudiomixerorc-dist.h
Normal file
106
gst/audiomixer/gstaudiomixerorc-dist.h
Normal file
|
@ -0,0 +1,106 @@
|
|||
|
||||
/* autogenerated from gstaudiomixerorc.orc */
|
||||
|
||||
#ifndef _GSTAUDIOMIXERORC_H_
|
||||
#define _GSTAUDIOMIXERORC_H_
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifndef _ORC_INTEGER_TYPEDEFS_
|
||||
#define _ORC_INTEGER_TYPEDEFS_
|
||||
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||
#include <stdint.h>
|
||||
typedef int8_t orc_int8;
|
||||
typedef int16_t orc_int16;
|
||||
typedef int32_t orc_int32;
|
||||
typedef int64_t orc_int64;
|
||||
typedef uint8_t orc_uint8;
|
||||
typedef uint16_t orc_uint16;
|
||||
typedef uint32_t orc_uint32;
|
||||
typedef uint64_t orc_uint64;
|
||||
#define ORC_UINT64_C(x) UINT64_C(x)
|
||||
#elif defined(_MSC_VER)
|
||||
typedef signed __int8 orc_int8;
|
||||
typedef signed __int16 orc_int16;
|
||||
typedef signed __int32 orc_int32;
|
||||
typedef signed __int64 orc_int64;
|
||||
typedef unsigned __int8 orc_uint8;
|
||||
typedef unsigned __int16 orc_uint16;
|
||||
typedef unsigned __int32 orc_uint32;
|
||||
typedef unsigned __int64 orc_uint64;
|
||||
#define ORC_UINT64_C(x) (x##Ui64)
|
||||
#define inline __inline
|
||||
#else
|
||||
#include <limits.h>
|
||||
typedef signed char orc_int8;
|
||||
typedef short orc_int16;
|
||||
typedef int orc_int32;
|
||||
typedef unsigned char orc_uint8;
|
||||
typedef unsigned short orc_uint16;
|
||||
typedef unsigned int orc_uint32;
|
||||
#if INT_MAX == LONG_MAX
|
||||
typedef long long orc_int64;
|
||||
typedef unsigned long long orc_uint64;
|
||||
#define ORC_UINT64_C(x) (x##ULL)
|
||||
#else
|
||||
typedef long orc_int64;
|
||||
typedef unsigned long orc_uint64;
|
||||
#define ORC_UINT64_C(x) (x##UL)
|
||||
#endif
|
||||
#endif
|
||||
typedef union { orc_int16 i; orc_int8 x2[2]; } orc_union16;
|
||||
typedef union { orc_int32 i; float f; orc_int16 x2[2]; orc_int8 x4[4]; } orc_union32;
|
||||
typedef union { orc_int64 i; double f; orc_int32 x2[2]; float x2f[2]; orc_int16 x4[4]; } orc_union64;
|
||||
#endif
|
||||
#ifndef ORC_RESTRICT
|
||||
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||
#define ORC_RESTRICT restrict
|
||||
#elif defined(__GNUC__) && __GNUC__ >= 4
|
||||
#define ORC_RESTRICT __restrict__
|
||||
#else
|
||||
#define ORC_RESTRICT
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef ORC_INTERNAL
|
||||
#if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
|
||||
#define ORC_INTERNAL __attribute__((visibility("hidden")))
|
||||
#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
|
||||
#define ORC_INTERNAL __hidden
|
||||
#elif defined (__GNUC__)
|
||||
#define ORC_INTERNAL __attribute__((visibility("hidden")))
|
||||
#else
|
||||
#define ORC_INTERNAL
|
||||
#endif
|
||||
#endif
|
||||
|
||||
void audiomixer_orc_add_s32 (gint32 * ORC_RESTRICT d1, const gint32 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_s16 (gint16 * ORC_RESTRICT d1, const gint16 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_s8 (gint8 * ORC_RESTRICT d1, const gint8 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_u32 (guint32 * ORC_RESTRICT d1, const guint32 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_u16 (guint16 * ORC_RESTRICT d1, const guint16 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_u8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_f32 (float * ORC_RESTRICT d1, const float * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_add_f64 (double * ORC_RESTRICT d1, const double * ORC_RESTRICT s1, int n);
|
||||
void audiomixer_orc_volume_u8 (guint8 * ORC_RESTRICT d1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_u8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_s8 (gint8 * ORC_RESTRICT d1, const gint8 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_u16 (guint16 * ORC_RESTRICT d1, const guint16 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_s16 (gint16 * ORC_RESTRICT d1, const gint16 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_u32 (guint32 * ORC_RESTRICT d1, const guint32 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_s32 (gint32 * ORC_RESTRICT d1, const gint32 * ORC_RESTRICT s1, int p1, int n);
|
||||
void audiomixer_orc_add_volume_f32 (float * ORC_RESTRICT d1, const float * ORC_RESTRICT s1, float p1, int n);
|
||||
void audiomixer_orc_add_volume_f64 (double * ORC_RESTRICT d1, const double * ORC_RESTRICT s1, double p1, int n);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
176
gst/audiomixer/gstaudiomixerorc.orc
Normal file
176
gst/audiomixer/gstaudiomixerorc.orc
Normal file
|
@ -0,0 +1,176 @@
|
|||
.function audiomixer_orc_add_s32
|
||||
.dest 4 d1 gint32
|
||||
.source 4 s1 gint32
|
||||
|
||||
addssl d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_s16
|
||||
.dest 2 d1 gint16
|
||||
.source 2 s1 gint16
|
||||
|
||||
addssw d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_s8
|
||||
.dest 1 d1 gint8
|
||||
.source 1 s1 gint8
|
||||
|
||||
addssb d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_u32
|
||||
.dest 4 d1 guint32
|
||||
.source 4 s1 guint32
|
||||
|
||||
addusl d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_u16
|
||||
.dest 2 d1 guint16
|
||||
.source 2 s1 guint16
|
||||
|
||||
addusw d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_u8
|
||||
.dest 1 d1 guint8
|
||||
.source 1 s1 guint8
|
||||
|
||||
addusb d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_f32
|
||||
.dest 4 d1 float
|
||||
.source 4 s1 float
|
||||
|
||||
addf d1, d1, s1
|
||||
|
||||
.function audiomixer_orc_add_f64
|
||||
.dest 8 d1 double
|
||||
.source 8 s1 double
|
||||
|
||||
addd d1, d1, s1
|
||||
|
||||
|
||||
.function audiomixer_orc_volume_u8
|
||||
.dest 1 d1 guint8
|
||||
.param 1 p1
|
||||
.const 1 c1 0x80
|
||||
.temp 2 t1
|
||||
.temp 1 t2
|
||||
|
||||
xorb t2, d1, c1
|
||||
mulsbw t1, t2, p1
|
||||
shrsw t1, t1, 3
|
||||
convssswb t2, t1
|
||||
xorb d1, t2, c1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_u8
|
||||
.dest 1 d1 guint8
|
||||
.source 1 s1 guint8
|
||||
.param 1 p1
|
||||
.const 1 c1 0x80
|
||||
.temp 2 t1
|
||||
.temp 1 t2
|
||||
|
||||
xorb t2, s1, c1
|
||||
mulsbw t1, t2, p1
|
||||
shrsw t1, t1, 3
|
||||
convssswb t2, t1
|
||||
xorb t2, t2, c1
|
||||
addusb d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_s8
|
||||
.dest 1 d1 gint8
|
||||
.source 1 s1 gint8
|
||||
.param 1 p1
|
||||
.temp 2 t1
|
||||
.temp 1 t2
|
||||
|
||||
mulsbw t1, s1, p1
|
||||
shrsw t1, t1, 3
|
||||
convssswb t2, t1
|
||||
addssb d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_u16
|
||||
.dest 2 d1 guint16
|
||||
.source 2 s1 guint16
|
||||
.param 2 p1
|
||||
.const 2 c1 0x8000
|
||||
.temp 4 t1
|
||||
.temp 2 t2
|
||||
|
||||
xorw t2, s1, c1
|
||||
mulswl t1, t2, p1
|
||||
shrsl t1, t1, 11
|
||||
convssslw t2, t1
|
||||
xorw t2, t2, c1
|
||||
addusw d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_s16
|
||||
.dest 2 d1 gint16
|
||||
.source 2 s1 gint16
|
||||
.param 2 p1
|
||||
.temp 4 t1
|
||||
.temp 2 t2
|
||||
|
||||
mulswl t1, s1, p1
|
||||
shrsl t1, t1, 11
|
||||
convssslw t2, t1
|
||||
addssw d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_u32
|
||||
.dest 4 d1 guint32
|
||||
.source 4 s1 guint32
|
||||
.param 4 p1
|
||||
.const 4 c1 0x80000000
|
||||
.temp 8 t1
|
||||
.temp 4 t2
|
||||
|
||||
xorl t2, s1, c1
|
||||
mulslq t1, t2, p1
|
||||
shrsq t1, t1, 27
|
||||
convsssql t2, t1
|
||||
xorl t2, t2, c1
|
||||
addusl d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_s32
|
||||
.dest 4 d1 gint32
|
||||
.source 4 s1 gint32
|
||||
.param 4 p1
|
||||
.temp 8 t1
|
||||
.temp 4 t2
|
||||
|
||||
mulslq t1, s1, p1
|
||||
shrsq t1, t1, 27
|
||||
convsssql t2, t1
|
||||
addssl d1, d1, t2
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_f32
|
||||
.dest 4 d1 float
|
||||
.source 4 s1 float
|
||||
.floatparam 4 p1
|
||||
.temp 4 t1
|
||||
|
||||
mulf t1, s1, p1
|
||||
addf d1, d1, t1
|
||||
|
||||
|
||||
.function audiomixer_orc_add_volume_f64
|
||||
.dest 8 d1 double
|
||||
.source 8 s1 double
|
||||
.doubleparam 8 p1
|
||||
.temp 8 t1
|
||||
|
||||
muld t1, s1, p1
|
||||
addd d1, d1, t1
|
||||
|
||||
|
|
@ -212,6 +212,7 @@ check_PROGRAMS = \
|
|||
elements/aiffparse \
|
||||
elements/autoconvert \
|
||||
elements/autovideoconvert \
|
||||
elements/audiomixer \
|
||||
elements/asfmux \
|
||||
elements/baseaudiovisualizer \
|
||||
elements/camerabin \
|
||||
|
@ -251,6 +252,9 @@ AM_CFLAGS = $(GST_CFLAGS) $(GST_CHECK_CFLAGS) $(GST_OPTION_CFLAGS) \
|
|||
-UG_DISABLE_ASSERT -UG_DISABLE_CAST_CHECKS
|
||||
LDADD = $(GST_CHECK_LIBS)
|
||||
|
||||
elements_audiomixer_LDADD = $(GST_BASE_LIBS) -lgstbase-@GST_API_VERSION@ $(LDADD)
|
||||
elements_audiomixer_CFLAGS = $(GST_BASE_CFLAGS) $(AM_CFLAGS)
|
||||
|
||||
# parser unit test convenience lib
|
||||
noinst_LTLIBRARIES = libparser.la
|
||||
libparser_la_SOURCES = elements/parser.c elements/parser.h
|
||||
|
|
1296
tests/check/elements/audiomixer.c
Normal file
1296
tests/check/elements/audiomixer.c
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue