GstAudioAggregator: hook up to build

https://bugzilla.gnome.org/show_bug.cgi?id=791218
This commit is contained in:
Tim-Philipp Müller 2018-02-13 16:09:09 +00:00
parent ab758a9a39
commit 4647d6684f
5 changed files with 16 additions and 6 deletions

View file

@ -1,6 +1,8 @@
#include <gst/gst.h> #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> #include <gst/audio/gstaudiocdsrc.h>
gst_audio_cd_src_get_type gst_audio_cd_src_get_type
#include <gst/audio/gstaudioclock.h> #include <gst/audio/gstaudioclock.h>

View file

@ -14,6 +14,11 @@ GObject
GstControlSource GstControlSource
GstElement GstElement
GstAdder GstAdder
GstAggregator
GstAudioAggregator
GstAudioInterleave
GstAudioMixer
GstLiveAdder
GstAudioDecoder GstAudioDecoder
GstOpusDec GstOpusDec
GstVorbisDec GstVorbisDec
@ -160,6 +165,10 @@ GObject
GstGLContext GstGLContext
GstGLShader GstGLShader
GstPad GstPad
GstAggregatorPad
GstAudioAggregatorPad
GstAudioInterleavePad
GstAudioMixerPad
GstProxyPad GstProxyPad
GstGhostPad GstGhostPad
GstDecodePad GstDecodePad

View file

@ -41,6 +41,7 @@ libgstaudio_@GST_API_VERSION@_la_SOURCES = \
audio-info.c \ audio-info.c \
audio-quantize.c \ audio-quantize.c \
audio-resampler.c \ audio-resampler.c \
gstaudioaggregator.c \
gstaudioringbuffer.c \ gstaudioringbuffer.c \
gstaudioclock.c \ gstaudioclock.c \
gstaudiocdsrc.c \ gstaudiocdsrc.c \
@ -69,6 +70,7 @@ libgstaudio_@GST_API_VERSION@include_HEADERS = \
audio-info.h \ audio-info.h \
audio-quantize.h \ audio-quantize.h \
audio-resampler.h \ audio-resampler.h \
gstaudioaggregator.h \
gstaudioringbuffer.h \ gstaudioringbuffer.h \
gstaudioclock.h \ gstaudioclock.h \
gstaudiofilter.h \ gstaudiofilter.h \

View file

@ -23,11 +23,6 @@
#ifndef __GST_AUDIO_AGGREGATOR_H__ #ifndef __GST_AUDIO_AGGREGATOR_H__
#define __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/gst.h>
#include <gst/base/gstaggregator.h> #include <gst/base/gstaggregator.h>
#include <gst/audio/audio.h> #include <gst/audio/audio.h>

View file

@ -7,6 +7,7 @@ audio_src= [
'audio-info.c', 'audio-info.c',
'audio-quantize.c', 'audio-quantize.c',
'audio-resampler.c', 'audio-resampler.c',
'gstaudioaggregator.c',
'gstaudiobasesink.c', 'gstaudiobasesink.c',
'gstaudiobasesrc.c', 'gstaudiobasesrc.c',
'gstaudiocdsrc.c', 'gstaudiocdsrc.c',
@ -33,6 +34,7 @@ audio_mkenum_headers = [
'audio-info.h', 'audio-info.h',
'audio-quantize.h', 'audio-quantize.h',
'audio-resampler.h', 'audio-resampler.h',
'gstaudioaggregator.h',
'gstaudioringbuffer.h', 'gstaudioringbuffer.h',
'gstaudiobasesrc.h', 'gstaudiobasesrc.h',
'gstaudiocdsrc.h', 'gstaudiocdsrc.h',