Export libwireshark symbols using WS_DLL_PUBLIC define
[metze/wireshark/wip.git] / epan / rtp_pt.h
1 /* rtp_pt.h
2  * Defines RTP payload types
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  */
24
25 #ifndef __RTP_PT_H__
26 #define __RTP_PT_H__
27
28 #include <epan/value_string.h>
29 #include "ws_symbol_export.h"
30
31 /*
32  * RTP Payload types
33  * Table B.2 / H.225.0
34  * Also RFC 3551, and
35  *
36  *      http://www.iana.org/assignments/rtp-parameters
37  */
38 #define PT_PCMU                 0       /* RFC 3551 */
39 #define PT_1016                 1       /* RFC 1890 (reserved in RFC 3551) */
40 #define PT_G721                 2       /* RFC 1890 (reserved in RFC 3551) */
41 #define PT_GSM                  3       /* RFC 3551 */
42 #define PT_G723                 4       /* From Vineet Kumar of Intel; see the Web page */
43 #define PT_DVI4_8000    5       /* RFC 3551 */
44 #define PT_DVI4_16000   6       /* RFC 3551 */
45 #define PT_LPC                  7       /* RFC 3551 */
46 #define PT_PCMA                 8       /* RFC 3551 */
47 #define PT_G722                 9       /* RFC 3551 */
48 #define PT_L16_STEREO   10      /* RFC 3551 */
49 #define PT_L16_MONO             11      /* RFC 3551 */
50 #define PT_QCELP                12      /* Qualcomm Code Excited Linear Predictive coding? */
51 #define PT_CN                   13      /* RFC 3389 */
52 #define PT_MPA                  14      /* RFC 3551, RFC 2250 */
53 #define PT_G728                 15      /* RFC 3551 */
54 #define PT_DVI4_11025   16      /* from Joseph Di Pol of Sun; see the Web page */
55 #define PT_DVI4_22050   17      /* from Joseph Di Pol of Sun; see the Web page */
56 #define PT_G729                 18
57 #define PT_CN_OLD               19      /* Payload type reserved (old version Comfort Noise) */
58 #define PT_CELB                 25      /* RFC 2029 */
59 #define PT_JPEG                 26      /* RFC 2435 */
60 #define PT_NV                   28      /* RFC 1890 */
61 #define PT_H261                 31      /* RFC 2032 */
62 #define PT_MPV                  32      /* RFC 2250 */
63 #define PT_MP2T                 33      /* RFC 2250 */
64 #define PT_H263                 34      /* from Chunrong Zhu of Intel; see the Web page */
65
66 /* Added to by Alex Lindberg to cover port ranges 96-127 - Dynamic RTP
67    Some of these ports are used by Avaya for Modem and FAX support */
68
69 #define PT_UNDF_96              96  /* RFC 3551 */
70 #define PT_UNDF_97              97
71 #define PT_UNDF_98              98
72 #define PT_UNDF_99              99
73 #define PT_UNDF_100             100
74 #define PT_UNDF_101             101
75 #define PT_UNDF_102             102
76 #define PT_UNDF_103             103
77 #define PT_UNDF_104             104
78 #define PT_UNDF_105             105
79 #define PT_UNDF_106             106
80 #define PT_UNDF_107             107
81 #define PT_UNDF_108             108
82 #define PT_UNDF_109             109
83 #define PT_UNDF_110             110
84 #define PT_UNDF_111             111
85 #define PT_UNDF_112             112
86 #define PT_UNDF_113             113
87 #define PT_UNDF_114             114
88 #define PT_UNDF_115             115
89 #define PT_UNDF_116             116
90 #define PT_UNDF_117             117
91 #define PT_UNDF_118             118
92 #define PT_UNDF_119             119
93 #define PT_UNDF_120             120
94 #define PT_UNDF_121             121
95 #define PT_UNDF_122             122
96 #define PT_UNDF_123             123
97 #define PT_UNDF_124             124
98 #define PT_UNDF_125             125
99 #define PT_UNDF_126             126
100 #define PT_UNDF_127             127
101
102 WS_DLL_PUBLIC value_string_ext rtp_payload_type_vals_ext;
103 WS_DLL_PUBLIC value_string_ext rtp_payload_type_short_vals_ext;
104
105 #endif