diff options
author | Andy Wingo <wingo@pobox.com> | 2007-12-17 15:06:48 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2007-12-17 15:06:48 +0000 |
commit | f3f11f48228a94c36e58a63af5bcdbedf097d317 (patch) | |
tree | a2a4ea7d7f50ba8e22e0efa5dc99fbb995704d31 /gst/switch/gstswitch.h | |
parent | a4b2009e243a651c7c65fff916b1315ba7d4a281 (diff) | |
download | gst-plugins-bad-f3f11f48228a94c36e58a63af5bcdbedf097d317.tar.gz gst-plugins-bad-f3f11f48228a94c36e58a63af5bcdbedf097d317.tar.bz2 gst-plugins-bad-f3f11f48228a94c36e58a63af5bcdbedf097d317.zip |
gst/switch/: gst/switch/gstswitch.c (gst_stream_selector_class_init) (gst_stream_selector_block): Make the block() si...
Original commit message from CVS:
2007-12-17 Andy Wingo <wingo@pobox.com>
* gst/switch/gstswitch-marshal.list:
* gst/switch/gstswitch.h (struct _GstStreamSelectorClass):
* gst/switch/gstswitch.c (gst_stream_selector_class_init)
(gst_stream_selector_block): Make the block() signal return the
last stop time of the active pad. Patch 10/12.
Diffstat (limited to 'gst/switch/gstswitch.h')
-rw-r--r-- | gst/switch/gstswitch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/switch/gstswitch.h b/gst/switch/gstswitch.h index 7ede7346..b1699593 100644 --- a/gst/switch/gstswitch.h +++ b/gst/switch/gstswitch.h @@ -58,7 +58,7 @@ struct _GstStreamSelector { struct _GstStreamSelectorClass { GstElementClass parent_class; - void (*block) (GstStreamSelector *self); + GstClockTime (*block) (GstStreamSelector *self); void (*switch_) (GstStreamSelector *self, const gchar *pad_name, GstClockTime stop_time, GstClockTime start_time); }; |