Home
last modified time | relevance | path

Searched refs:sdes (Results 1 – 16 of 16) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/rist/
Dgstristsink.c559 GstStructure *sdes = NULL; in gst_rist_sink_init() local
582 g_object_get (sink->rtpbin, "sdes", &sdes, NULL); in gst_rist_sink_init()
583 gst_structure_remove_field (sdes, "tool"); in gst_rist_sink_init()
588 "sdes", sdes, NULL); in gst_rist_sink_init()
589 gst_structure_free (sdes); in gst_rist_sink_init()
1105 GstStructure *sdes; in gst_rist_sink_get_property() local
1145 g_object_get (sink->rtpbin, "sdes", &sdes, NULL); in gst_rist_sink_get_property()
1146 g_value_set_string (value, gst_structure_get_string (sdes, "cname")); in gst_rist_sink_get_property()
1147 gst_structure_free (sdes); in gst_rist_sink_get_property()
1197 GstStructure *sdes; in gst_rist_sink_set_property() local
[all …]
Dgstristsrc.c404 GstStructure *sdes = NULL; in gst_rist_src_init() local
430 g_object_get (src->rtpbin, "sdes", &sdes, NULL); in gst_rist_src_init()
431 gst_structure_remove_field (sdes, "tool"); in gst_rist_src_init()
436 "sdes", sdes, NULL); in gst_rist_src_init()
437 gst_structure_free (sdes); in gst_rist_src_init()
1052 GstStructure *sdes; in gst_rist_src_get_property() local
1100 g_object_get (src->rtpbin, "sdes", &sdes, NULL); in gst_rist_src_get_property()
1101 g_value_set_string (value, gst_structure_get_string (sdes, "cname")); in gst_rist_src_get_property()
1102 gst_structure_free (sdes); in gst_rist_src_get_property()
1134 GstStructure *sdes; in gst_rist_src_set_property() local
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Drtpsource.c307 src->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes"); in rtp_source_init()
344 gst_structure_free (src->sdes); in rtp_source_finalize()
489 return src->sdes; in rtp_source_get_sdes_struct()
524 rtp_source_set_sdes_struct (RTPSource * src, GstStructure * sdes) in rtp_source_set_sdes_struct() argument
529 g_return_val_if_fail (strcmp (gst_structure_get_name (sdes), in rtp_source_set_sdes_struct()
532 changed = !gst_structure_foreach (sdes, sdes_struct_compare_func, src->sdes); in rtp_source_set_sdes_struct()
535 gst_structure_free (src->sdes); in rtp_source_set_sdes_struct()
536 src->sdes = sdes; in rtp_source_set_sdes_struct()
538 gst_structure_free (sdes); in rtp_source_set_sdes_struct()
Drtpsession.c696 sess->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes"); in rtp_session_init()
700 gst_structure_set (sess->sdes, "cname", G_TYPE_STRING, str, NULL); in rtp_session_init()
706 gst_structure_set (sdes, "name", G_TYPE_STRING, str, NULL); in rtp_session_init()
710 gst_structure_set (sess->sdes, "tool", G_TYPE_STRING, "GStreamer", NULL); in rtp_session_init()
744 gst_structure_free (sess->sdes); in rtp_session_finalize()
1482 if (sess->sdes) in rtp_session_get_sdes_struct()
1483 result = gst_structure_copy (sess->sdes); in rtp_session_get_sdes_struct()
1490 source_set_sdes (const gchar * key, RTPSource * source, GstStructure * sdes) in source_set_sdes() argument
1492 rtp_source_set_sdes_struct (source, gst_structure_copy (sdes)); in source_set_sdes()
1503 rtp_session_set_sdes_struct (RTPSession * sess, const GstStructure * sdes) in rtp_session_set_sdes_struct() argument
[all …]
Drtpsource.h151 GstStructure *sdes; member
238 gboolean rtp_source_set_sdes_struct (RTPSource * src, GstStructure *sdes);
Drtpsession.h244 GstStructure *sdes; member
392 void rtp_session_set_sdes_struct (RTPSession *sess, const GstStructure *sdes);
Dgstrtpbin.c760 g_object_set (session, "sdes", rtpbin->sdes, "rtp-profile", in create_session()
2889 rtpbin->sdes = gst_structure_new ("application/x-rtp-source-sdes", in gst_rtp_bin_init()
2922 if (rtpbin->sdes) in gst_rtp_bin_finalize()
2923 gst_structure_free (rtpbin->sdes); in gst_rtp_bin_finalize()
2939 gst_rtp_bin_set_sdes_struct (GstRtpBin * bin, const GstStructure * sdes) in gst_rtp_bin_set_sdes_struct() argument
2943 if (sdes == NULL) in gst_rtp_bin_set_sdes_struct()
2949 if (bin->sdes) in gst_rtp_bin_set_sdes_struct()
2950 gst_structure_free (bin->sdes); in gst_rtp_bin_set_sdes_struct()
2951 bin->sdes = gst_structure_copy (sdes); in gst_rtp_bin_set_sdes_struct()
2957 g_object_set (session->session, "sdes", sdes, NULL); in gst_rtp_bin_set_sdes_struct()
[all …]
Dgstrtpbin.h89 GstStructure *sdes; member
/third_party/gstreamer/gstplugins_good/gst/rtsp/
Dgstrtspsrc.h264 GstStructure *sdes; member
Dgstrtspsrc.c1451 src->sdes = NULL; in gst_rtspsrc_init()
1534 if (rtspsrc->sdes) in gst_rtspsrc_finalize()
1535 gst_structure_free (rtspsrc->sdes); in gst_rtspsrc_finalize()
1753 rtspsrc->sdes = g_value_dup_boxed (value); in gst_rtspsrc_set_property()
1927 g_value_set_boxed (value, rtspsrc->sdes); in gst_rtspsrc_get_property()
4046 if (src->sdes && g_object_class_find_property (klass, "sdes")) { in gst_rtspsrc_stream_configure_manager()
4047 g_object_set (src->manager, "sdes", src->sdes, NULL); in gst_rtspsrc_stream_configure_manager()
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtpsession.c2062 GstStructure *sdes; in GST_START_TEST() local
2067 g_object_get (h->internal_session, "sdes", &sdes, NULL); in GST_START_TEST()
2068 gst_structure_set (sdes, "cname", G_TYPE_STRING, "user@test", NULL); in GST_START_TEST()
2069 g_object_set (h->internal_session, "sdes", sdes, NULL); in GST_START_TEST()
2070 gst_structure_free (sdes); in GST_START_TEST()
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcbin.c2732 GstStructure *sdes; in _media_add_rtx_ssrc() local
2735 g_object_get (data->webrtc->rtpbin, "sdes", &sdes, NULL); in _media_add_rtx_ssrc()
2737 cname = gst_structure_get_string (sdes, "cname"); in _media_add_rtx_ssrc()
2750 gst_structure_free (sdes); in _media_add_rtx_ssrc()
2762 GstStructure *sdes; in _media_add_ssrcs() local
2764 g_object_get (webrtc->rtpbin, "sdes", &sdes, NULL); in _media_add_ssrcs()
2766 cname = gst_structure_get_string (sdes, "cname"); in _media_add_ssrcs()
2792 gst_structure_free (sdes); in _media_add_ssrcs()
/third_party/pulseaudio/src/modules/rtp/
Drfc3550.txt4306 } sdes;
4722 rtcp_sdes_t *sd = &r->r.sdes;
/third_party/gstreamer/gstplugins_good/
DChangeLog30475 rtpsession: handle sdes messages with non-utf8 more gracefully
58310 rtspsrc: Add sdes property and proxy it to rtpbin
59416 session: configure sdes with structure only
91252 Only the sdes veriable is protected with the object lock.
91253 Use the right object when setting the sdes property.
111385 Remove all individual SDES properties and use one sdes property that takes a
111396 Remove all individual SDES properties and use one sdes property that takes a
111429 rtpbin: Transform the right session sdes message
111435 Add ssrc to application/x-rtp-source-sdes structure
/third_party/gstreamer/gstplugins_bad/
DChangeLog194288 Remove all individual SDES properties and use one sdes property that takes a
194299 Remove all individual SDES properties and use one sdes property that takes a
196422 rtpbin: Transform the right session sdes message
196428 Add ssrc to application/x-rtp-source-sdes structure
/third_party/gstreamer/gstplugins_base/
DChangeLog2151 rtp: add some additional rtcp sdes values