summaryrefslogtreecommitdiffstats
path: root/gst/switch/gstswitch.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2007-12-17 14:48:26 +0000
committerAndy Wingo <wingo@pobox.com>2007-12-17 14:48:26 +0000
commitc9c47b8dce3f3bfc633a5e522d78d4f7cdb767cf (patch)
tree07ef6ae8fa2320d656541f9cf1c9d7060b66b6a2 /gst/switch/gstswitch.h
parentad6223b448bf527de15f2617fed9b4fa53495854 (diff)
downloadgst-plugins-bad-c9c47b8dce3f3bfc633a5e522d78d4f7cdb767cf.tar.gz
gst-plugins-bad-c9c47b8dce3f3bfc633a5e522d78d4f7cdb767cf.tar.bz2
gst-plugins-bad-c9c47b8dce3f3bfc633a5e522d78d4f7cdb767cf.zip
gst/switch/gstswitch.h (struct _GstStreamSelectorClass): Fix vmethod prototypes.
Original commit message from CVS: 2007-12-17 Andy Wingo <wingo@pobox.com> * gst/switch/gstswitch.h (struct _GstStreamSelectorClass): Fix vmethod prototypes. * gst/switch/gstswitch.c (gst_stream_selector_class_init) (gst_stream_selector_block, gst_stream_selector_switch): Add empty vmethod definitions. Patch 3/12.
Diffstat (limited to 'gst/switch/gstswitch.h')
-rw-r--r--gst/switch/gstswitch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/switch/gstswitch.h b/gst/switch/gstswitch.h
index 3d88ca2b..4690c3c3 100644
--- a/gst/switch/gstswitch.h
+++ b/gst/switch/gstswitch.h
@@ -53,9 +53,9 @@ struct _GstStreamSelector {
struct _GstStreamSelectorClass {
GstElementClass parent_class;
- void (*block) (void);
- void (*switch_) (const gchar *pad_name, GstClockTime stop_time,
- GstClockTime start_time);
+ void (*block) (GstStreamSelector *self);
+ void (*switch_) (GstStreamSelector *self, const gchar *pad_name,
+ GstClockTime stop_time, GstClockTime start_time);
};
GType gst_stream_selector_get_type (void);