summaryrefslogtreecommitdiffstats
path: root/gst/rtp/README
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-09-20 10:51:51 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-09-20 10:51:51 +0000
commit67abe2f343ab7249ab1e5cba42043e8b84a15e37 (patch)
tree40f469d632da2e51850d3a67eb680e186a632e30 /gst/rtp/README
parentcdb18ecaa700952e2f42be49260afac3ee599047 (diff)
don't use underscores
Original commit message from CVS: don't use underscores
Diffstat (limited to 'gst/rtp/README')
-rw-r--r--gst/rtp/README22
1 files changed, 11 insertions, 11 deletions
diff --git a/gst/rtp/README b/gst/rtp/README
index b809df8a..13f0fd93 100644
--- a/gst/rtp/README
+++ b/gst/rtp/README
@@ -12,28 +12,28 @@ The following fields can or must (*) be specified in the structure:
* payload: (int) [0, 255]
For audio and video, these will normally be a media payload type as
defined in the RTP Audio/Video Profile. For dynamicaly allocated
- payload types, this value will be >= 96 and the encoding_name must be
+ payload types, this value will be >= 96 and the encoding-name must be
set.
- * clock_rate: (int) [0 - MAXINT]
+ * clock-rate: (int) [0 - MAXINT]
the RTP clock rate
ssrc: (uint) [0 - MAXINT]
The ssrc value currently in use.
- clock_base: (uint) [0 - MAXINT]
+ clock-base: (uint) [0 - MAXINT]
The RTP time representing time 0
- seqnum_base:
+ seqnum-base:
The RTP sequence number representing the first rtp packet
- encoding_name: (String) ANY
+ encoding-name: (String) ANY
typically second part of the mime type. ex. MP4V-ES. only required if
payload type >= 96
- encoding_params: (String) ANY
+ encoding-params: (String) ANY
extra encoding parameters (as in the SDP a=rtpmap: field). only required
- if different from the default of the encoding_name.
+ if different from the default of the encoding-name.
Optional parameters as key/value pairs, media type specific.
@@ -42,9 +42,9 @@ The following fields can or must (*) be specified in the structure:
"application/x-rtp",
"media", G_TYPE_STRING, "audio", -]
"payload", G_TYPE_INT, 96, ] - required
- "clock_rate", G_TYPE_INT, 8000, -]
- "encoding_name", G_TYPE_STRING, "AMR", -] - required since payload >= 96
- "encoding_params", G_TYPE_STRING, "1", -] - optional param for AMR
+ "clock-rate", G_TYPE_INT, 8000, -]
+ "encoding-name", G_TYPE_STRING, "AMR", -] - required since payload >= 96
+ "encoding-params", G_TYPE_STRING, "1", -] - optional param for AMR
"octet-align", G_TYPE_BOOLEAN, TRUE, -]
"crc", G_TYPE_BOOLEAN, FALSE, ]
"robust-sorting", G_TYPE_BOOLEAN, FALSE, ] AMR specific params.
@@ -53,7 +53,7 @@ The following fields can or must (*) be specified in the structure:
Mapping of caps to and from SDP fields:
m=<media> <udp port> RTP/AVP <payload> -] media and payload from caps
- a=rtpmap:<payload> <encoding_name>/<clock_rate>[/<encoding_params>]
+ a=rtpmap:<payload> <encoding-name>/<clock-rate>[/<encoding-params>]
-> when <payload> >= 96
a=fmtp:<payload> <param>=<value>;...