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 /ext/gsm/gstgsmenc.c | |
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 'ext/gsm/gstgsmenc.c')
-rw-r--r-- | ext/gsm/gstgsmenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gsm/gstgsmenc.c b/ext/gsm/gstgsmenc.c index d3ece7e8..9084257b 100644 --- a/ext/gsm/gstgsmenc.c +++ b/ext/gsm/gstgsmenc.c @@ -51,7 +51,7 @@ static void gst_gsmenc_class_init (GstGSMEnc *klass); static void gst_gsmenc_init (GstGSMEnc *gsmenc); static void gst_gsmenc_chain (GstPad *pad,GstBuffer *buf); -static GstPadConnectReturn gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps); +static GstPadLinkReturn gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps); static GstElementClass *parent_class = NULL; static guint gst_gsmenc_signals[LAST_SIGNAL] = { 0 }; @@ -114,7 +114,7 @@ gst_gsmenc_init (GstGSMEnc *gsmenc) gsmenc->rate = 8000; } -static GstPadConnectReturn +static GstPadLinkReturn gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps) { GstGSMEnc *gsmenc; |