mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
GstAudioAggregator: hook up to build
https://bugzilla.gnome.org/show_bug.cgi?id=791218
This commit is contained in:
parent
ab758a9a39
commit
4647d6684f
5 changed files with 16 additions and 6 deletions
|
@ -1,6 +1,8 @@
|
|||
#include <gst/gst.h>
|
||||
|
||||
|
||||
#include <gst/audio/gstaudioaggregator.h>
|
||||
gst_audio_aggregator_get_type
|
||||
gst_audio_aggregator_pad_get_type
|
||||
#include <gst/audio/gstaudiocdsrc.h>
|
||||
gst_audio_cd_src_get_type
|
||||
#include <gst/audio/gstaudioclock.h>
|
||||
|
|
|
@ -14,6 +14,11 @@ GObject
|
|||
GstControlSource
|
||||
GstElement
|
||||
GstAdder
|
||||
GstAggregator
|
||||
GstAudioAggregator
|
||||
GstAudioInterleave
|
||||
GstAudioMixer
|
||||
GstLiveAdder
|
||||
GstAudioDecoder
|
||||
GstOpusDec
|
||||
GstVorbisDec
|
||||
|
@ -160,6 +165,10 @@ GObject
|
|||
GstGLContext
|
||||
GstGLShader
|
||||
GstPad
|
||||
GstAggregatorPad
|
||||
GstAudioAggregatorPad
|
||||
GstAudioInterleavePad
|
||||
GstAudioMixerPad
|
||||
GstProxyPad
|
||||
GstGhostPad
|
||||
GstDecodePad
|
||||
|
|
|
@ -41,6 +41,7 @@ libgstaudio_@GST_API_VERSION@_la_SOURCES = \
|
|||
audio-info.c \
|
||||
audio-quantize.c \
|
||||
audio-resampler.c \
|
||||
gstaudioaggregator.c \
|
||||
gstaudioringbuffer.c \
|
||||
gstaudioclock.c \
|
||||
gstaudiocdsrc.c \
|
||||
|
@ -69,6 +70,7 @@ libgstaudio_@GST_API_VERSION@include_HEADERS = \
|
|||
audio-info.h \
|
||||
audio-quantize.h \
|
||||
audio-resampler.h \
|
||||
gstaudioaggregator.h \
|
||||
gstaudioringbuffer.h \
|
||||
gstaudioclock.h \
|
||||
gstaudiofilter.h \
|
||||
|
|
|
@ -23,11 +23,6 @@
|
|||
#ifndef __GST_AUDIO_AGGREGATOR_H__
|
||||
#define __GST_AUDIO_AGGREGATOR_H__
|
||||
|
||||
#ifndef GST_USE_UNSTABLE_API
|
||||
#warning "The Base library from gst-plugins-bad is unstable API and may change in future."
|
||||
#warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
|
||||
#endif
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstaggregator.h>
|
||||
#include <gst/audio/audio.h>
|
||||
|
|
|
@ -7,6 +7,7 @@ audio_src= [
|
|||
'audio-info.c',
|
||||
'audio-quantize.c',
|
||||
'audio-resampler.c',
|
||||
'gstaudioaggregator.c',
|
||||
'gstaudiobasesink.c',
|
||||
'gstaudiobasesrc.c',
|
||||
'gstaudiocdsrc.c',
|
||||
|
@ -33,6 +34,7 @@ audio_mkenum_headers = [
|
|||
'audio-info.h',
|
||||
'audio-quantize.h',
|
||||
'audio-resampler.h',
|
||||
'gstaudioaggregator.h',
|
||||
'gstaudioringbuffer.h',
|
||||
'gstaudiobasesrc.h',
|
||||
'gstaudiocdsrc.h',
|
||||
|
|
Loading…
Reference in a new issue