summaryrefslogtreecommitdiffstats
path: root/gst/rtp
diff options
context:
space:
mode:
authorAngel Carpintero <ack@telefonica.net>2003-08-12 11:20:00 +0000
committerAngel Carpintero <ack@telefonica.net>2003-08-12 11:20:00 +0000
commit2bbef11b2b60c3096cb3ffbb9dcaae1220be3cf5 (patch)
treefa79648b7fbf586f2bd4455546fe9ca9f398000b /gst/rtp
parentbe8bd94217bf7dc3666ce001843b3ce26d90f77e (diff)
Add PCMU = 0 (G711 mu-law) and PCMA = 8 (G711 a-law) payloads
Original commit message from CVS: Add PCMU = 0 (G711 mu-law) and PCMA = 8 (G711 a-law) payloads
Diffstat (limited to 'gst/rtp')
-rw-r--r--gst/rtp/gstrtp-common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp-common.h b/gst/rtp/gstrtp-common.h
index e0b9dc7d..fb675189 100644
--- a/gst/rtp/gstrtp-common.h
+++ b/gst/rtp/gstrtp-common.h
@@ -26,7 +26,9 @@
typedef enum
{
/* Audio: */
+ PAYLOAD_PCMU = 0, /* ITU-T G.711. mu-law audio (RFC 3551) */
PAYLOAD_GSM = 3,
+ PAYLOAD_PCMA = 8, /* ITU-T G.711 A-law audio (RFC 3551) */
PAYLOAD_L16_STEREO = 10,
PAYLOAD_L16_MONO = 11,
PAYLOAD_MPA = 14, /* Audio MPEG 1-3 */