summaryrefslogtreecommitdiffstats
path: root/src/pulsesrc.h
diff options
context:
space:
mode:
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;
};