summaryrefslogtreecommitdiff
path: root/tools/gstaudiosrc.c
blob: 95f20e7523f7302a783f8feaade0056d4053e66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% ClassName
GstAudioSrc
% TYPE_CLASS_NAME
GST_TYPE_AUDIO_SRC
% pkg-config
gstreamer-audio-0.10
% includes
#include <gst/audio/gstaudiosrc.h>
% prototypes
static gboolean gst_replace_open (GstAudioSink * sink);
static gboolean
gst_replace_prepare (GstAudioSink * sink, GstRingBufferSpec * spec);
static gboolean gst_replace_unprepare (GstAudioSink * sink);
static gboolean gst_replace_close (GstAudioSink * sink);
static guint
gst_replace_write (GstAudioSink * sink, gpointer data, guint length);
static guint gst_replace_delay (GstAudioSink * sink);
static void gst_replace_reset (GstAudioSink * sink);
% declare-class
  GstAudioSrc *audio_src_class = GST_AUDIO_SRC (klass);
% set-methods
  audio_src_class-> = GST_DEBUG_FUNCPTR (gst_replace_);
% methods

static gboolean
gst_replace_open (GstAudioSink * sink)
{
}

static gboolean
gst_replace_prepare (GstAudioSink * sink, GstRingBufferSpec * spec)
{
}

static gboolean
gst_replace_unprepare (GstAudioSink * sink)
{
}

static gboolean
gst_replace_close (GstAudioSink * sink)
{
}

static guint
gst_replace_write (GstAudioSink * sink, gpointer data, guint length)
{
}

static guint
gst_replace_delay (GstAudioSink * sink)
{
}

static void
gst_replace_reset (GstAudioSink * sink)
{
}
% end