mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
da1fe1e0dd
Better creation of pads, test and fix many other classes. Most classes work now, although might not create functional elements.
25 lines
552 B
C
25 lines
552 B
C
% ClassName
|
|
GstAudioFilter
|
|
% TYPE_CLASS_NAME
|
|
GST_TYPE_AUDIO_FILTER
|
|
% pads
|
|
sinkpad-simple srcpad-simple
|
|
% 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
|