mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 12:55:53 +00:00
change _connect to _link
Original commit message from CVS: change _connect to _link
This commit is contained in:
parent
0b56bcf40c
commit
6828fe2567
3 changed files with 8 additions and 8 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit 2c2bce01ed5ed1d1684bd76a334477398009ef4a
|
Subproject commit b5288e8215c6eacf0782880f6c5b6dea8f445a34
|
|
@ -13,7 +13,7 @@ new_pad_func (GstElement *element, GstPad *newpad, gpointer data)
|
||||||
|
|
||||||
if (!strcmp (gst_pad_get_name (newpad), "video_00")) {
|
if (!strcmp (gst_pad_get_name (newpad), "video_00")) {
|
||||||
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
gst_pad_connect (newpad, gst_element_get_pad (queue, "sink"));
|
gst_pad_link (newpad, gst_element_get_pad (queue, "sink"));
|
||||||
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,11 +65,11 @@ main (gint argc, gchar *argv[])
|
||||||
gst_bin_add (GST_BIN (thread), xvideosink);
|
gst_bin_add (GST_BIN (thread), xvideosink);
|
||||||
gst_bin_add (GST_BIN (pipeline), thread);
|
gst_bin_add (GST_BIN (pipeline), thread);
|
||||||
|
|
||||||
gst_element_connect (filesrc, "src", demux, "sink");
|
gst_element_link (filesrc, "src", demux, "sink");
|
||||||
gst_element_connect (queue, "src", mpeg2dec, "sink");
|
gst_element_link (queue, "src", mpeg2dec, "sink");
|
||||||
gst_element_connect (mpeg2dec, "src", colorspace, "sink");
|
gst_element_link (mpeg2dec, "src", colorspace, "sink");
|
||||||
/* force RGB data passing between colorspace and xvideosink */
|
/* force RGB data passing between colorspace and xvideosink */
|
||||||
res = gst_element_connect_filtered (colorspace, "src", xvideosink, "sink",
|
res = gst_element_link_filtered (colorspace, "src", xvideosink, "sink",
|
||||||
GST_CAPS_NEW (
|
GST_CAPS_NEW (
|
||||||
"filtercaps",
|
"filtercaps",
|
||||||
"video/raw",
|
"video/raw",
|
||||||
|
|
|
@ -37,13 +37,13 @@ int main(int argc,char *argv[]) {
|
||||||
gst_bin_add(GST_BIN(bin),GST_ELEMENT(src));
|
gst_bin_add(GST_BIN(bin),GST_ELEMENT(src));
|
||||||
gst_bin_add(GST_BIN(bin),GST_ELEMENT(spectrum));
|
gst_bin_add(GST_BIN(bin),GST_ELEMENT(spectrum));
|
||||||
|
|
||||||
gst_pad_connect(gst_element_get_pad(src,"src"),
|
gst_pad_link(gst_element_get_pad(src,"src"),
|
||||||
gst_element_get_pad(spectrum,"sink"));
|
gst_element_get_pad(spectrum,"sink"));
|
||||||
|
|
||||||
spectrumpad = gst_pad_new("sink",GST_PAD_SINK);
|
spectrumpad = gst_pad_new("sink",GST_PAD_SINK);
|
||||||
gst_pad_set_chain_function(spectrumpad,spectrum_chain);
|
gst_pad_set_chain_function(spectrumpad,spectrum_chain);
|
||||||
|
|
||||||
gst_pad_connect(gst_element_get_pad(spectrum,"src"),spectrumpad);
|
gst_pad_link(gst_element_get_pad(spectrum,"src"),spectrumpad);
|
||||||
|
|
||||||
appwindow = gnome_app_new("spectrum","Spectrum");
|
appwindow = gnome_app_new("spectrum","Spectrum");
|
||||||
drawingarea = gtk_drawing_area_new();
|
drawingarea = gtk_drawing_area_new();
|
||||||
|
|
Loading…
Reference in a new issue