mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
24 lines
516 B
C
24 lines
516 B
C
|
% ClassName
|
||
|
GstAudioFilter
|
||
|
% TYPE_CLASS_NAME
|
||
|
GST_TYPE_AUDIO_FILTER
|
||
|
% pkg-config
|
||
|
gstreamer-audio-0.10
|
||
|
% includes
|
||
|
#include <gst/audio/gstaudiofilter.h>
|
||
|
% prototypes
|
||
|
static gboolean
|
||
|
gst_replace_setup (GstAudioFilter * filter, GstRingBufferSpec * format);
|
||
|
% declare-class
|
||
|
GstAudioFilter *audio_filter_class = GST_AUDIO_FILTER (klass);
|
||
|
% set-methods
|
||
|
audio_filter_class-> = GST_DEBUG_FUNCPTR (gst_replace_);
|
||
|
% methods
|
||
|
|
||
|
static gboolean
|
||
|
gst_replace_setup (GstAudioFilter * filter, GstRingBufferSpec * format)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
% end
|