summaryrefslogtreecommitdiffstats
path: root/src/pulsesrc.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-06-20 19:35:42 +0000
committerLennart Poettering <lennart@poettering.net>2006-06-20 19:35:42 +0000
commite6deb2afaa3f37bbd9c18b8d721fa51ef94af5d6 (patch)
treef2dac587c3e5f420b93f53647b1ee21e58468d54 /src/pulsesrc.h
parent392fb34c5f5ad704f1826dafd33023e581e12484 (diff)
more s/Polyp/Pulse/g
git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@43 bb39ca4e-bce3-0310-b5d4-eea78a553289
Diffstat (limited to 'src/pulsesrc.h')
-rw-r--r--src/pulsesrc.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pulsesrc.h b/src/pulsesrc.h
index c78072f..85206f8 100644
--- a/src/pulsesrc.h
+++ b/src/pulsesrc.h
@@ -35,18 +35,18 @@ G_BEGIN_DECLS
#define GST_TYPE_PULSESRC \
(gst_pulsesrc_get_type())
#define GST_PULSESRC(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESRC,GstPolypSrc))
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESRC,GstPulseSrc))
#define GST_PULSESRC_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESRC,GstPolypSrcClass))
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESRC,GstPulseSrcClass))
#define GST_IS_PULSESRC(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PULSESRC))
#define GST_IS_PULSESRC_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PULSESRC))
-typedef struct _GstPolypSrc GstPolypSrc;
-typedef struct _GstPolypSrcClass GstPolypSrcClass;
+typedef struct _GstPulseSrc GstPulseSrc;
+typedef struct _GstPulseSrcClass GstPulseSrcClass;
-struct _GstPolypSrc {
+struct _GstPulseSrc {
GstAudioSrc src;
gchar *server, *device;
@@ -61,10 +61,10 @@ struct _GstPolypSrc {
const void *read_buffer;
size_t read_buffer_length;
- GstPolypMixerCtrl *mixer;
+ GstPulseMixerCtrl *mixer;
};
-struct _GstPolypSrcClass {
+struct _GstPulseSrcClass {
GstAudioSrcClass parent_class;
};