Skip to content

Commit

Permalink
modules: readme files regenerated - sdpops ...
Browse files Browse the repository at this point in the history
  • Loading branch information
kamailio-dev committed Aug 26, 2016
1 parent ce900ff commit 09232b9
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions modules/sdpops/README
Expand Up @@ -26,8 +26,8 @@ Daniel-Constantin Mierla
3. Parameters
4. Functions

4.1. sdp_remove_codecs_by_id(list)
4.2. sdp_remove_codecs_by_name(list)
4.1. sdp_remove_codecs_by_id(list [, mtype])
4.2. sdp_remove_codecs_by_name(list [, mtype])
4.3. sdp_remove_line_by_prefix(string)
4.4. sdp_keep_codecs_by_id(list [, mtype])
4.5. sdp_keep_codecs_by_name(list [, mtype])
Expand Down Expand Up @@ -81,8 +81,8 @@ Chapter 1. Admin Guide
3. Parameters
4. Functions

4.1. sdp_remove_codecs_by_id(list)
4.2. sdp_remove_codecs_by_name(list)
4.1. sdp_remove_codecs_by_id(list [, mtype])
4.2. sdp_remove_codecs_by_name(list [, mtype])
4.3. sdp_remove_line_by_prefix(string)
4.4. sdp_keep_codecs_by_id(list [, mtype])
4.5. sdp_keep_codecs_by_name(list [, mtype])
Expand Down Expand Up @@ -133,8 +133,8 @@ Chapter 1. Admin Guide

4. Functions

4.1. sdp_remove_codecs_by_id(list)
4.2. sdp_remove_codecs_by_name(list)
4.1. sdp_remove_codecs_by_id(list [, mtype])
4.2. sdp_remove_codecs_by_name(list [, mtype])
4.3. sdp_remove_line_by_prefix(string)
4.4. sdp_keep_codecs_by_id(list [, mtype])
4.5. sdp_keep_codecs_by_name(list [, mtype])
Expand All @@ -153,7 +153,7 @@ Chapter 1. Admin Guide
4.18. sdp_with_ice()
4.19. sdp_get_line_startswith(avpvar, string)

4.1. sdp_remove_codecs_by_id(list)
4.1. sdp_remove_codecs_by_id(list [, mtype])

Remove the codecs provided in the parameter 'list' from all media
streams found in SDP payload. The parameter 'list' must be one item or
Expand All @@ -168,15 +168,20 @@ Chapter 1. Admin Guide
sdp_remove_codecs_by_id("0");
# remove PCMU, PCMA and GSM
sdp_remove_codecs_by_id("0,8,3");
sdp_remove_codecs_by_id("17", "audio");
sdp_remove_codecs_by_id("23", "video");
...

4.2. sdp_remove_codecs_by_name(list)
4.2. sdp_remove_codecs_by_name(list [, mtype])

Remove the codecs provided in the parameter 'list' from all media
streams found in SDP payload. The parameter 'list' must be one item or
a comma separated list of codec names. The parameter can be a static
string or a variable holding the list of codec names.

Optional parameter mtype can be provided to apply the operations only
to the streams matching m=mtype.

This function can be used from ANY_ROUTE.

Example 1.2. sdp_remove_codecs_by_name usage
Expand All @@ -192,6 +197,9 @@ sdp_remove_codecs_by_name("PCMU,PCMA,GSM");
Remove all SDP attribute lines beginning with 'string' in all media
streams.

Optional parameter mtype can be provided to apply the operations only
to the streams matching m=mtype.

This function can be used from ANY_ROUTE.

Example 1.3. sdp_remove_line_by_prefix usage
Expand Down

0 comments on commit 09232b9

Please sign in to comment.