OPAL  Version 3.12.9
known.h
Go to the documentation of this file.
1 /*
2  * known.h
3  *
4  * Known media format names
5  *
6  * Open Phone Abstraction Library (OPAL)
7  * Formally known as the Open H323 project.
8  *
9  * Copyright (c) 2001 Equivalence Pty. Ltd.
10  *
11  * The contents of this file are subject to the Mozilla Public License
12  * Version 1.0 (the "License"); you may not use this file except in
13  * compliance with the License. You may obtain a copy of the License at
14  * http://www.mozilla.org/MPL/
15  *
16  * Software distributed under the License is distributed on an "AS IS"
17  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
18  * the License for the specific language governing rights and limitations
19  * under the License.
20  *
21  * The Original Code is Open H323 Library.
22  *
23  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
24  *
25  * Contributor(s): ______________________________________.
26  *
27  * $Revision: 29806 $
28  * $Author: rjongbloed $
29  * $Date: 2013-05-27 16:43:28 +1000 (Mon, 27 May 2013) $
30  */
31 
32 #ifndef OPAL_CODEC_KNOWN_H
33 #define OPAL_CODEC_KNOWN_H
34 
35 #define OPAL_PCM16 "PCM-16"
36 #define OPAL_PCM16S "PCM-16S"
37 #define OPAL_PCM16_16KHZ "PCM-16-16kHz"
38 #define OPAL_PCM16S_16KHZ "PCM-16S-16kHz"
39 #define OPAL_PCM16_32KHZ "PCM-16-32kHz"
40 #define OPAL_PCM16S_32KHZ "PCM-16S-32kHz"
41 #define OPAL_PCM16_48KHZ "PCM-16-48kHz"
42 #define OPAL_PCM16S_48KHZ "PCM-16S-48kHz"
43 
44 #define OPAL_L16_MONO_8KHZ "Linear-16-Mono-8kHz"
45 #define OPAL_L16_STEREO_8KHZ "Linear-16-Stereo-8kHz"
46 #define OPAL_L16_MONO_16KHZ "Linear-16-Mono-16kHz"
47 #define OPAL_L16_STEREO_16KHZ "Linear-16-Stereo-16kHz"
48 #define OPAL_L16_MONO_32KHZ "Linear-16-Mono-32kHz"
49 #define OPAL_L16_STEREO_32KHZ "Linear-16-Stereo-32kHz"
50 #define OPAL_L16_MONO_48KHZ "Linear-16-Mono-48kHz"
51 #define OPAL_L16_STEREO_48KHZ "Linear-16-Stereo-48kHz"
52 
53 #define OPAL_G711_ULAW_64K "G.711-uLaw-64k"
54 #define OPAL_G711_ALAW_64K "G.711-ALaw-64k"
55 #define OPAL_G722 "G.722-64k"
56 #define OPAL_G7221 OPAL_G7221_32K
57 #define OPAL_G7221_24K "G.722.1-24K"
58 #define OPAL_G7221_32K "G.722.1-32K"
59 #define OPAL_G7221_48K "G.722.1-48K"
60 #define OPAL_G7222 "G.722.2"
61 #define OPAL_G726_40K "G.726-40K"
62 #define OPAL_G726_32K "G.726-32K"
63 #define OPAL_G726_24K "G.726-24K"
64 #define OPAL_G726_16K "G.726-16K"
65 #define OPAL_G728 "G.728"
66 #define OPAL_G729 "G.729"
67 #define OPAL_G729A "G.729A"
68 #define OPAL_G729B "G.729B"
69 #define OPAL_G729AB "G.729A/B"
70 #define OPAL_G7231 "G.723.1"
71 #define OPAL_G7231_6k3 OPAL_G7231
72 #define OPAL_G7231_5k3 "G.723.1(5.3k)"
73 #define OPAL_G7231A_6k3 "G.723.1A(6.3k)"
74 #define OPAL_G7231A_5k3 "G.723.1A(5.3k)"
75 #define OPAL_GSM0610 "GSM-06.10"
76 #define OPAL_GSMAMR "GSM-AMR"
77 #define OPAL_iLBC "iLBC"
78 
79 #define OPAL_H261 "H.261"
80 #define OPAL_H263 "H.263"
81 #define OPAL_H263plus "H.263plus"
82 #define OPAL_H264 OPAL_H264_MODE1
83 #define OPAL_H264_MODE0 "H.264-0"
84 #define OPAL_H264_MODE1 "H.264-1"
85 #define OPAL_H264_High "H.264-High"
86 #define OPAL_MPEG4 "MPEG4"
87 
88 #define OPAL_RFC2833 "UserInput/RFC2833"
89 #define OPAL_CISCONSE "NamedSignalEvent"
90 #define OPAL_T38 "T.38"
91 
92 
93 #ifndef OPAL_PLUGIN_COMPILE
94 
95 
96 #endif // OPAL_PLUGIN_COMPILE
97 
98 
99 #endif // OPAL_CODEC_KNOWN_H
100 
101 
102 // End of File ///////////////////////////////////////////////////////////////