From Olivier Biot: have a separate subtree ett_ value for concatenated
[obnox/wireshark/wip.git] / rtp_pt.h
1 /* rtp_pt.h
2  * Defines RTP payload types
3  *
4  * $Id: rtp_pt.h,v 1.2 2003/09/25 19:35:02 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __RTP_PT_H__
26 #define __RTP_PT_H__
27
28 /*
29  * RTP Payload types
30  * Table B.2 / H.225.0
31  * Also RFC 1890, and
32  *
33  *      http://www.iana.org/assignments/rtp-parameters
34  */
35 #define PT_PCMU         0       /* RFC 1890 */
36 #define PT_1016         1       /* RFC 1890 */
37 #define PT_G721         2       /* RFC 1890 */
38 #define PT_GSM          3       /* RFC 1890 */
39 #define PT_G723         4       /* From Vineet Kumar of Intel; see the Web page */
40 #define PT_DVI4_8000    5       /* RFC 1890 */
41 #define PT_DVI4_16000   6       /* RFC 1890 */
42 #define PT_LPC          7       /* RFC 1890 */
43 #define PT_PCMA         8       /* RFC 1890 */
44 #define PT_G722         9       /* RFC 1890 */
45 #define PT_L16_STEREO   10      /* RFC 1890 */
46 #define PT_L16_MONO     11      /* RFC 1890 */
47 #define PT_QCELP        12      /* Qualcomm Code Excited Linear Predictive coding? */
48 #define PT_CN           13      /* RFC 3389 */
49 #define PT_MPA          14      /* RFC 1890, RFC 2250 */
50 #define PT_G728         15      /* RFC 1890 */
51 #define PT_DVI4_11025   16      /* from Joseph Di Pol of Sun; see the Web page */
52 #define PT_DVI4_22050   17      /* from Joseph Di Pol of Sun; see the Web page */
53 #define PT_G729         18
54 #define PT_CN_OLD       19      /* Payload type reserved (old version Comfort Noise) */
55 #define PT_CELB         25      /* RFC 2029 */
56 #define PT_JPEG         26      /* RFC 2435 */
57 #define PT_NV           28      /* RFC 1890 */
58 #define PT_H261         31      /* RFC 2032 */
59 #define PT_MPV          32      /* RFC 2250 */
60 #define PT_MP2T         33      /* RFC 2250 */
61 #define PT_H263         34      /* from Chunrong Zhu of Intel; see the Web page */
62
63 #endif