mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
PadConnect -> PadLink
Original commit message from CVS: PadConnect -> PadLink
This commit is contained in:
parent
45c7badc47
commit
b914183d97
4 changed files with 5 additions and 5 deletions
|
@ -186,7 +186,7 @@ static void gst_ffmpegdecall_class_init (GstFFMpegDecAllClass *klass);
|
||||||
static void gst_ffmpegdecall_init (GstFFMpegDecAll *ffmpegdec);
|
static void gst_ffmpegdecall_init (GstFFMpegDecAll *ffmpegdec);
|
||||||
static void gst_ffmpegdecall_destroy (GObject *obj);
|
static void gst_ffmpegdecall_destroy (GObject *obj);
|
||||||
static void gst_ffmpegdecall_chain (GstPad *pad, GstBuffer *buffer);
|
static void gst_ffmpegdecall_chain (GstPad *pad, GstBuffer *buffer);
|
||||||
static GstPadConnectReturn gst_ffmpegdecall_connect (GstPad *pad, GstCaps *caps);
|
static GstPadLinkReturn gst_ffmpegdecall_connect (GstPad *pad, GstCaps *caps);
|
||||||
|
|
||||||
static GstElementClass *parent_class = NULL;
|
static GstElementClass *parent_class = NULL;
|
||||||
|
|
||||||
|
@ -265,7 +265,7 @@ gst_ffmpegdecall_destroy (GObject *obj)
|
||||||
av_free(ffmpegdec->context);
|
av_free(ffmpegdec->context);
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadConnectReturn
|
static GstPadLinkReturn
|
||||||
gst_ffmpegdecall_connect (GstPad *pad, GstCaps *caps)
|
gst_ffmpegdecall_connect (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstFFMpegDecAll *ffmpegdec = GST_FFMPEGDECALL(gst_pad_get_parent(pad));
|
GstFFMpegDecAll *ffmpegdec = GST_FFMPEGDECALL(gst_pad_get_parent(pad));
|
||||||
|
|
|
@ -154,7 +154,7 @@ gst_ffmpegdec_class_init (GstFFMpegDecClass *klass)
|
||||||
gobject_class->get_property = gst_ffmpegdec_get_property;
|
gobject_class->get_property = gst_ffmpegdec_get_property;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadConnectReturn
|
static GstPadLinkReturn
|
||||||
gst_ffmpegdec_sinkconnect (GstPad *pad, GstCaps *caps)
|
gst_ffmpegdec_sinkconnect (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *)(gst_pad_get_parent (pad));
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *)(gst_pad_get_parent (pad));
|
||||||
|
|
|
@ -224,7 +224,7 @@ gst_ffmpegenc_class_init (GstFFMpegEncClass *klass)
|
||||||
gobject_class->get_property = gst_ffmpegenc_get_property;
|
gobject_class->get_property = gst_ffmpegenc_get_property;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadConnectReturn
|
static GstPadLinkReturn
|
||||||
gst_ffmpegenc_sinkconnect (GstPad *pad, GstCaps *caps)
|
gst_ffmpegenc_sinkconnect (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstFFMpegEnc *ffmpegenc = (GstFFMpegEnc *) gst_pad_get_parent (pad);
|
GstFFMpegEnc *ffmpegenc = (GstFFMpegEnc *) gst_pad_get_parent (pad);
|
||||||
|
|
|
@ -157,7 +157,7 @@ gst_ffmpegmux_class_init (GstFFMpegMuxClass *klass)
|
||||||
gobject_class->get_property = gst_ffmpegmux_get_property;
|
gobject_class->get_property = gst_ffmpegmux_get_property;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadConnectReturn
|
static GstPadLinkReturn
|
||||||
gst_ffmpegmux_sinkconnect (GstPad *pad, GstCaps *caps)
|
gst_ffmpegmux_sinkconnect (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstFFMpegMux *ffmpegmux = (GstFFMpegMux *)(gst_pad_get_parent (pad));
|
GstFFMpegMux *ffmpegmux = (GstFFMpegMux *)(gst_pad_get_parent (pad));
|
||||||
|
|
Loading…
Reference in a new issue