Home
last modified time | relevance | path

Searched refs:extmap (Results 1 – 5 of 5) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/sdp/
Dgstsdpmessage.c3947 gchar *extmap = g_strdup_printf ("%u %s", id, fval); in gst_sdp_media_set_media_from_caps() local
3948 gst_sdp_media_add_attribute (media, "extmap", extmap); in gst_sdp_media_set_media_from_caps()
3949 g_free (extmap); in gst_sdp_media_set_media_from_caps()
3970 gchar *extmap = in gst_sdp_media_set_media_from_caps() local
3973 gst_sdp_media_add_attribute (media, "extmap", extmap); in gst_sdp_media_set_media_from_caps()
3974 g_free (extmap); in gst_sdp_media_set_media_from_caps()
3976 gchar *extmap = in gst_sdp_media_set_media_from_caps() local
3978 gst_sdp_media_add_attribute (media, "extmap", extmap); in gst_sdp_media_set_media_from_caps()
3979 g_free (extmap); in gst_sdp_media_set_media_from_caps()
3981 gchar *extmap = g_strdup_printf ("%u %s %s", id, extensionname, in gst_sdp_media_set_media_from_caps() local
[all …]
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcbin.c2873 GstStructure *extmap; member
2894 if (gst_structure_id_has_field (data->extmap, field_id)) { in _dedup_extmap_field()
2896 _parse_extmap (field_id, gst_structure_id_get_value (data->extmap, in _dedup_extmap_field()
2917 gst_structure_id_set_value (data->extmap, field_id, value); in _dedup_extmap_field()
2943 gst_clear_structure (&edata.extmap); in _gather_extmap()
2948 return edata.extmap; in _gather_extmap()
2981 GstStructure *extmap; in sdp_media_from_transceiver() local
3061 extmap = _gather_extmap (caps, error); in sdp_media_from_transceiver()
3063 if (!extmap) { in sdp_media_from_transceiver()
3078 gst_structure_foreach (extmap, (GstStructureForeachFunc) _copy_field, s); in sdp_media_from_transceiver()
[all …]
/third_party/gstreamer/gstplugins_base/
DChangeLog5924 If the 'extmap-$NUM' field is present in the src caps, then an
5937 If the 'extmap-$NUM' field is present in the sink caps, then an
12542 sdp: Add support for parsing the extmap attribute from caps and storing inside caps
12543 The extmap attribute allows mapping RTP extension header IDs to
12545 We store the extmap attribute either as string in the caps
12546 extmap-X=extensionname
12548 extmap-X=<direction,extensionname,extensionattributes>
/third_party/gstreamer/gstplugins_good/
DChangeLog531 because they haven't set the extmap in the caps.
1443 rtpfunnel: fix extmap handling on accept-caps
1451 caps with a defined extmap.
/third_party/gstreamer/gstplugins_bad/
DChangeLog2342 When an extmap is defined twice for the same ID, firefox complains and
2344 To work around this, we deduplicate extmap attributes, and also error
2345 out when a different extmap is defined for the same ID.