Home
last modified time | relevance | path

Searched refs:upstream_id (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgststreamcollection.c149 if (collection->upstream_id) { in gst_stream_collection_dispose()
150 g_free (collection->upstream_id); in gst_stream_collection_dispose()
151 collection->upstream_id = NULL; in gst_stream_collection_dispose()
172 gst_stream_collection_new (const gchar * upstream_id) in gst_stream_collection_new() argument
177 g_object_new (GST_TYPE_STREAM_COLLECTION, "upstream-id", upstream_id, in gst_stream_collection_new()
188 const gchar * upstream_id) in gst_stream_collection_set_upstream_id() argument
190 g_return_if_fail (collection->upstream_id == NULL); in gst_stream_collection_set_upstream_id()
194 if (collection->upstream_id) in gst_stream_collection_set_upstream_id()
195 g_free (collection->upstream_id); in gst_stream_collection_set_upstream_id()
197 if (upstream_id) in gst_stream_collection_set_upstream_id()
[all …]
Dgststreamcollection.h73 gchar *upstream_id; member
100 GstStreamCollection *gst_stream_collection_new (const gchar *upstream_id);
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dqtdemux.c483 const gchar *upstream_id; in GST_START_TEST() local
565 upstream_id = "TEST-GROUP-1"; in GST_START_TEST()
567 expected_stream_id = g_strdup_printf ("%s/%03u", upstream_id, track_id); in GST_START_TEST()
568 event = gst_event_new_stream_start (upstream_id); in GST_START_TEST()
621 upstream_id = "TEST-GROUP-1"; /* upstream-id does not changed from GROUP 1 */ in GST_START_TEST()
623 expected_stream_id = g_strdup_printf ("%s/%03u", upstream_id, track_id); in GST_START_TEST()
646 upstream_id = "TEST-GROUP-3"; in GST_START_TEST()
648 expected_stream_id = g_strdup_printf ("%s/%03u", upstream_id, track_id); in GST_START_TEST()
649 event = gst_event_new_stream_start (upstream_id); in GST_START_TEST()
692 upstream_id = "TEST-GROUP-4"; in GST_START_TEST()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtsbase.c391 gchar *upstream_id = gst_pad_get_stream_id (sinkpad); in _get_upstream_id() local
393 if (!upstream_id) { in _get_upstream_id()
412 upstream_id = g_strdup (g_checksum_get_string (cs)); in _get_upstream_id()
418 upstream_id = in _get_upstream_id()
425 return upstream_id; in _get_upstream_id()
433 gchar *upstream_id, *stream_id; in mpegts_base_new_program() local
445 upstream_id = _get_upstream_id ((GstElement *) base, base->sinkpad); in mpegts_base_new_program()
446 stream_id = g_strdup_printf ("%s:%d", upstream_id, program_number); in mpegts_base_new_program()
449 g_free (upstream_id); in mpegts_base_new_program()
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgstdecodebin3.c1415 const gchar *upstream_id; in handle_stream_collection() local
1438 upstream_id = gst_stream_collection_get_upstream_id (collection); in handle_stream_collection()
1439 GST_DEBUG ("Received Stream Collection. Upstream_id : %s", upstream_id); in handle_stream_collection()
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dqtdemux.c1839 gchar *upstream_id = gst_pad_get_stream_id (demux->sinkpad); in _get_upstream_id() local
1841 if (!upstream_id) { in _get_upstream_id()
1860 upstream_id = g_strdup (g_checksum_get_string (cs)); in _get_upstream_id()
1866 upstream_id = in _get_upstream_id()
1873 return upstream_id; in _get_upstream_id()
1880 gchar *upstream_id; in _create_stream() local
1885 upstream_id = _get_upstream_id (demux); in _create_stream()
1886 stream->stream_id = g_strdup_printf ("%s/%03u", upstream_id, track_id); in _create_stream()
1887 g_free (upstream_id); in _create_stream()