diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-10 13:38:32 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-10 13:38:32 +0000 |
commit | 8e3c533fcf5c7dfc365871c3601008a0cb06ce42 (patch) | |
tree | e0073ff6181158d646c682d8b30ea5ac576a6d0b /gst/playondemand | |
parent | 177c0e8da2b074fb797c16f674dcd6544579e454 (diff) | |
download | gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.tar.gz gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.tar.bz2 gst-plugins-bad-8e3c533fcf5c7dfc365871c3601008a0cb06ce42.zip |
PadConnect -> PadLink
Original commit message from CVS:
PadConnect -> PadLink
Diffstat (limited to 'gst/playondemand')
-rw-r--r-- | gst/playondemand/gstplayondemand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/playondemand/gstplayondemand.c b/gst/playondemand/gstplayondemand.c index 7d9959cd..1784cb86 100644 --- a/gst/playondemand/gstplayondemand.c +++ b/gst/playondemand/gstplayondemand.c @@ -111,7 +111,7 @@ static void play_on_demand_get_property (GObject *object, GValue *value, GParamSpec *pspec); -static GstPadConnectReturn play_on_demand_pad_connect (GstPad *pad, GstCaps *caps); +static GstPadLinkReturn play_on_demand_pad_connect (GstPad *pad, GstCaps *caps); static void play_on_demand_loop (GstElement *elem); @@ -135,7 +135,7 @@ play_on_demand_get_bufferpool (GstPad *pad) return gst_pad_get_bufferpool(filter->srcpad); } -static GstPadConnectReturn +static GstPadLinkReturn play_on_demand_pad_connect (GstPad *pad, GstCaps *caps) { const gchar *format; |