Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-rtp_pt.h
Go to the documentation of this file.
1
11#ifndef __RTP_PT_H__
12#define __RTP_PT_H__
13
14#include <wsutil/value_string.h>
15
16/*
17 * RTP Payload types
18 * Table B.2 / H.225.0
19 * Also RFC 3551, and
20 *
21 * http://www.iana.org/assignments/rtp-parameters
22 */
23#define PT_PCMU 0 /* RFC 3551 */
24#define PT_1016 1 /* RFC 1890 (reserved in RFC 3551) */
25#define PT_G721 2 /* RFC 1890 (reserved in RFC 3551) */
26#define PT_GSM 3 /* RFC 3551 */
27#define PT_G723 4 /* From Vineet Kumar of Intel; see the Web page */
28#define PT_DVI4_8000 5 /* RFC 3551 */
29#define PT_DVI4_16000 6 /* RFC 3551 */
30#define PT_LPC 7 /* RFC 3551 */
31#define PT_PCMA 8 /* RFC 3551 */
32#define PT_G722 9 /* RFC 3551 */
33#define PT_L16_STEREO 10 /* RFC 3551 */
34#define PT_L16_MONO 11 /* RFC 3551 */
35#define PT_QCELP 12 /* Qualcomm Code Excited Linear Predictive coding? */
36#define PT_CN 13 /* RFC 3389 */
37#define PT_MPA 14 /* RFC 3551, RFC 2250 */
38#define PT_G728 15 /* RFC 3551 */
39#define PT_DVI4_11025 16 /* from Joseph Di Pol of Sun; see the Web page */
40#define PT_DVI4_22050 17 /* from Joseph Di Pol of Sun; see the Web page */
41#define PT_G729 18
42#define PT_CN_OLD 19 /* Payload type reserved (old version Comfort Noise) */
43#define PT_CELB 25 /* RFC 2029 */
44#define PT_JPEG 26 /* RFC 2435 */
45#define PT_NV 28 /* RFC 1890 */
46#define PT_H261 31 /* RFC 2032 */
47#define PT_MPV 32 /* RFC 2250 */
48#define PT_MP2T 33 /* RFC 2250 */
49#define PT_H263 34 /* from Chunrong Zhu of Intel; see the Web page */
50
51/* Added to by Alex Lindberg to cover port ranges 96-127 - Dynamic RTP
52 Some of these ports are used by Avaya for Modem and FAX support */
53
54#define PT_UNDF_96 96 /* RFC 3551 */
55#define PT_UNDF_97 97
56#define PT_UNDF_98 98
57#define PT_UNDF_99 99
58#define PT_UNDF_100 100
59#define PT_UNDF_101 101
60#define PT_UNDF_102 102
61#define PT_UNDF_103 103
62#define PT_UNDF_104 104
63#define PT_UNDF_105 105
64#define PT_UNDF_106 106
65#define PT_UNDF_107 107
66#define PT_UNDF_108 108
67#define PT_UNDF_109 109
68#define PT_UNDF_110 110
69#define PT_UNDF_111 111
70#define PT_UNDF_112 112
71#define PT_UNDF_113 113
72#define PT_UNDF_114 114
73#define PT_UNDF_115 115
74#define PT_UNDF_116 116
75#define PT_UNDF_117 117
76#define PT_UNDF_118 118
77#define PT_UNDF_119 119
78#define PT_UNDF_120 120
79#define PT_UNDF_121 121
80#define PT_UNDF_122 122
81#define PT_UNDF_123 123
82#define PT_UNDF_124 124
83#define PT_UNDF_125 125
84#define PT_UNDF_126 126
85#define PT_UNDF_127 127
86
87extern value_string_ext rtp_payload_type_vals_ext;
88extern value_string_ext rtp_payload_type_short_vals_ext;
89
90#endif
91
92/*
93 * Editor modelines - https://www.wireshark.org/tools/modelines.html
94 *
95 * Local variables:
96 * c-basic-offset: 4
97 * tab-width: 8
98 * indent-tabs-mode: nil
99 * End:
100 *
101 * vi: set shiftwidth=4 tabstop=8 expandtab:
102 * :indentSize=4:tabSize=8:noTabs=true:
103 */
Extended metadata for a value_string array.
Definition value_string.h:325