Searched refs:control_path (Results 1 – 5 of 5) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspurl.c | 341 const gchar * control_path) in gst_rtsp_url_get_request_uri_with_control() argument 357 if (control_path && strlen (control_path) > 0) { in gst_rtsp_url_get_request_uri_with_control() 361 if (g_strcmp0 (control_path, "*") == 0) in gst_rtsp_url_get_request_uri_with_control() 362 control_path = ""; in gst_rtsp_url_get_request_uri_with_control() 363 control_has_slash = g_str_has_prefix (control_path, "/"); in gst_rtsp_url_get_request_uri_with_control() 364 actual_control_path = control_path; in gst_rtsp_url_get_request_uri_with_control() 366 if (strlen (control_path) == 1) { in gst_rtsp_url_get_request_uri_with_control() 369 actual_control_path = control_path + 1; in gst_rtsp_url_get_request_uri_with_control()
|
D | gstrtspurl.h | 106 const gchar * control_path);
|
/third_party/mesa3d/src/intel/common/ |
D | intel_measure.c | 93 const char *control_path = strstr(env, "control="); in intel_measure_init() local 139 if (control_path) { in intel_measure_init() 140 control_path += 8; in intel_measure_init() 141 if (mkfifoat(AT_FDCWD, control_path, O_CREAT | S_IRUSR | S_IWUSR)) { in intel_measure_init() 144 "fifo %s: %s\n", control_path, strerror (errno)); in intel_measure_init() 149 config.control_fh = openat(AT_FDCWD, control_path, in intel_measure_init() 153 "%s: %s\n", control_path, strerror (errno)); in intel_measure_init()
|
/third_party/gstreamer/gstplugins_good/gst/rtsp/ |
D | gstrtspsrc.c | 2302 const gchar *control_path; in gst_rtspsrc_create_stream() local 2354 control_path = gst_sdp_media_get_attribute_val (media, "control"); in gst_rtspsrc_create_stream() 2355 if (control_path == NULL) in gst_rtspsrc_create_stream() 2356 control_path = gst_sdp_message_get_attribute_val_n (sdp, "control", 0); in gst_rtspsrc_create_stream() 2361 GST_DEBUG_OBJECT (src, " control: %s", GST_STR_NULL (control_path)); in gst_rtspsrc_create_stream() 2364 if (control_path == NULL && n_streams == 1) { in gst_rtspsrc_create_stream() 2365 control_path = ""; in gst_rtspsrc_create_stream() 2368 if (control_path != NULL) { in gst_rtspsrc_create_stream() 2369 stream->control_url = g_strdup (control_path); in gst_rtspsrc_create_stream() 2375 if (g_str_has_prefix (control_path, "rtsp://")) in gst_rtspsrc_create_stream() [all …]
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 11391 Also, `control_url` variable has been renamed to `control_path`,
|