summaryrefslogtreecommitdiffstats
path: root/sys/directsound/gstdirectsoundsink.h
diff options
context:
space:
mode:
authorSébastien Moutte <sebastien@moutte.net>2007-02-18 18:00:51 +0000
committerSébastien Moutte <sebastien@moutte.net>2007-02-18 18:00:51 +0000
commit71cf071f58386f8d508f51fd4c4dbe64f54f40c1 (patch)
treecb20e1eb089527c08d904d09e5b5407b03999b5b /sys/directsound/gstdirectsoundsink.h
parentbd4b1f680c78da051459cf93efe4777e9f716a48 (diff)
sys/directdraw/: Prepare the plugin to move to good:
Original commit message from CVS: * sys/directdraw/gstdirectdrawplugin.c: * sys/directdraw/gstdirectdrawsink.c: * sys/directdraw/gstdirectdrawsink.h: Prepare the plugin to move to good: Remove unused/untested code (rendering to an extern surface, yuv format rendering).Use GST_(DEBUG/*)_OBJECT macros Rename all functions from gst_directdrawsink to gst_directdraw_sink. Add gtk doc section Fix a bug in gst_directdraw_sink_show_frame, memcpy line by line respecting destination surface stride. * sys/directsound/gstdirectsoundplugin.c: * sys/directsound/gstdirectsoundsink.c: * sys/directsound/gstdirectsoundsink.h: Prepare the plugin to move to good: Rename all functions from gst_directsoundsink to gst_directsound_sink. Add gtk doc section * win32/common/config.h.in: * win32/MANIFEST: Add config.h.in
Diffstat (limited to 'sys/directsound/gstdirectsoundsink.h')
-rw-r--r--sys/directsound/gstdirectsoundsink.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/directsound/gstdirectsoundsink.h b/sys/directsound/gstdirectsoundsink.h
index e4711cc9..d1a47aac 100644
--- a/sys/directsound/gstdirectsoundsink.h
+++ b/sys/directsound/gstdirectsoundsink.h
@@ -32,7 +32,7 @@
G_BEGIN_DECLS
-#define GST_TYPE_DIRECTSOUND_SINK (gst_directsoundsink_get_type())
+#define GST_TYPE_DIRECTSOUND_SINK (gst_directsound_sink_get_type())
#define GST_DIRECTSOUND_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DIRECTSOUND_SINK,GstDirectSoundSink))
#define GST_DIRECTSOUND_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DIRECTSOUND_SINK,GstDirectSoundSinkClass))
#define GST_IS_DIRECTSOUND_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DIRECTSOUND_SINK))
@@ -71,7 +71,7 @@ struct _GstDirectSoundSinkClass
GstAudioSinkClass parent_class;
};
-GType gst_directsoundsink_get_type (void);
+GType gst_directsound_sink_get_type (void);
G_END_DECLS
#endif /* __GST_DIRECTSOUNDSINK_H__ */