/third_party/gstreamer/gstreamer/tests/check/libs/ |
D | collectpads.c | 310 static GstPad *sinkpad1, *sinkpad2; variable 393 sinkpad2 = gst_pad_new_from_static_template (&sinktemplate, "sink2"); in setup_default() 395 fail_unless (gst_pad_link (srcpad2, sinkpad2) == GST_PAD_LINK_OK); in setup_default() 398 gst_pad_set_active (sinkpad2, TRUE); in setup_default() 429 gst_object_unref (sinkpad2); in teardown() 432 sinkpad1 = sinkpad2 = NULL; in teardown() 445 fail_unless (gst_collect_pads_remove_pad (collect, sinkpad2) == FALSE); in GST_START_TEST() 461 sinkpad2, sizeof (TestData), NULL, TRUE); in GST_START_TEST() 511 sinkpad2, sizeof (TestData), NULL, TRUE); in GST_START_TEST() 558 sinkpad2, sizeof (TestData), NULL, TRUE); in GST_START_TEST() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/smpte/ |
D | gstsmpte.c | 336 smpte->sinkpad2 = in gst_smpte_init() 338 GST_PAD_SET_PROXY_CAPS (smpte->sinkpad2); in gst_smpte_init() 339 gst_element_add_pad (GST_ELEMENT (smpte), smpte->sinkpad2); in gst_smpte_init() 353 gst_collect_pads_add_pad (smpte->collect, smpte->sinkpad2, in gst_smpte_init() 464 !gst_pad_has_current_caps (smpte->sinkpad2)) in gst_smpte_collected() 489 else if (data->pad == smpte->sinkpad2) in gst_smpte_collected() 563 caps2 = gst_pad_get_current_caps (smpte->sinkpad2); in gst_smpte_collected()
|
D | gstsmpte.h | 52 *sinkpad2; member
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | compositor.c | 489 GstPad *sinkpad1, *sinkpad2; in run_late_caps_query_test() local 534 sinkpad2 = gst_element_request_pad_simple (compositor, "sink_%u"); in run_late_caps_query_test() 536 fail_unless (gst_pad_link (srcpad2, sinkpad2) == GST_PAD_LINK_OK); in run_late_caps_query_test() 550 gst_element_release_request_pad (compositor, sinkpad2); in run_late_caps_query_test() 552 gst_object_unref (sinkpad2); in run_late_caps_query_test() 1905 GstPad *sinkpad1, *sinkpad2, *sinkpad3; in GST_START_TEST() local 1913 sinkpad2 = gst_element_request_pad_simple (compositor, "sink_%u"); in GST_START_TEST() 1917 g_object_get (sinkpad2, "zorder", &zorder2, NULL); in GST_START_TEST() 1921 ck_assert_ptr_eq (sinkpads->next->data, sinkpad2); in GST_START_TEST() 1926 ck_assert_ptr_eq (sinkpads->data, sinkpad2); in GST_START_TEST() [all …]
|
D | encodebin.c | 797 GstPad *sinkpad1, *sinkpad2, *srcpad; in GST_START_TEST() local 826 sinkpad2 = gst_element_request_pad_simple (ebin, "video_1"); in GST_START_TEST() 827 _caps_match (sinkpad2, "video/x-raw;video/x-theora"); in GST_START_TEST() 828 fail_unless_equals_int (gst_pad_link (srcpad, sinkpad2), GST_PAD_LINK_OK); in GST_START_TEST() 860 gst_element_release_request_pad (GST_ELEMENT (ebin), sinkpad2); in GST_START_TEST() 861 gst_object_unref (sinkpad2); in GST_START_TEST()
|
D | audiomixer.c | 1110 GstPad *tmppad, *srcpad1, *sinkpad1, *sinkpad2, *audiomixer_src; in GST_START_TEST() local 1133 sinkpad2 = gst_element_request_pad (audiomixer, sink_template, NULL, NULL); in GST_START_TEST() 1135 gst_pad_link (tmppad, sinkpad2); in GST_START_TEST() 1159 gst_element_release_request_pad (audiomixer, sinkpad2); in GST_START_TEST() 1160 gst_object_unref (sinkpad2); in GST_START_TEST() 1191 GstPad *sinkpad1, *sinkpad2; in run_sync_test() local 1239 sinkpad2 = gst_element_request_pad_simple (audiomixer, "sink_%u"); in run_sync_test() 1240 fail_if (sinkpad2 == NULL, NULL); in run_sync_test() 1244 fail_unless (gst_pad_link (pad, sinkpad2) == GST_PAD_LINK_OK); in run_sync_test() 1283 gst_element_release_request_pad (audiomixer, sinkpad2); in run_sync_test() [all …]
|
D | adder.c | 1021 GstPad *tmppad, *sinkpad1, *sinkpad2, *adder_src; 1045 sinkpad2 = gst_element_request_pad (adder, sink_template, NULL, NULL); 1047 gst_pad_link (tmppad, sinkpad2); 1065 gst_element_release_request_pad (adder, sinkpad2); 1066 gst_object_unref (sinkpad2);
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | videomixer.c | 978 GstPad *tmppad, *sinkpad1, *sinkpad2, *videomixer_src; 1000 sinkpad2 = gst_element_request_pad (videomixer, sink_template, NULL, NULL); 1002 gst_pad_link (tmppad, sinkpad2); 1022 gst_object_unref (sinkpad2);
|