summaryrefslogtreecommitdiffstats
path: root/src/pulsesink.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsesink.h')
-rw-r--r--src/pulsesink.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pulsesink.h b/src/pulsesink.h
index 84153ad..d8b20da 100644
--- a/src/pulsesink.h
+++ b/src/pulsesink.h
@@ -33,18 +33,18 @@ G_BEGIN_DECLS
#define GST_TYPE_PULSESINK \
(gst_pulsesink_get_type())
#define GST_PULSESINK(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESINK,GstPolypSink))
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESINK,GstPulseSink))
#define GST_PULSESINK_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESINK,GstPolypSinkClass))
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESINK,GstPulseSinkClass))
#define GST_IS_PULSESINK(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PULSESINK))
#define GST_IS_PULSESINK_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PULSESINK))
-typedef struct _GstPolypSink GstPolypSink;
-typedef struct _GstPolypSinkClass GstPolypSinkClass;
+typedef struct _GstPulseSink GstPulseSink;
+typedef struct _GstPulseSinkClass GstPulseSinkClass;
-struct _GstPolypSink {
+struct _GstPulseSink {
GstAudioSink sink;
gchar *server, *device, *stream_name;
@@ -59,7 +59,7 @@ struct _GstPolypSink {
int operation_success;
};
-struct _GstPolypSinkClass {
+struct _GstPulseSinkClass {
GstAudioSinkClass parent_class;
};