1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/*
* mscodecs.h
*
* Microsoft nonstandard codecs handler
*
* Open H323 Library
*
* Copyright (c) 1998-2001 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Open H323 Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): ______________________________________.
*
* $Log: mscodecs.h,v $
* Revision 2.10 2005/12/15 21:15:44 dsandras
* Fixed compilation with gcc 4.1.
*
* Revision 2.9 2005/08/28 07:59:17 rjongbloed
* Converted OpalTranscoder to use factory, requiring sme changes in making sure
* OpalMediaFormat instances are initialised before use.
*
* Revision 2.8 2005/02/21 12:19:45 rjongbloed
* Added new "options list" to the OpalMediaFormat class.
*
* Revision 2.7 2004/03/11 06:54:26 csoutheren
* Added ability to disable SIP or H.323 stacks
*
* Revision 2.6 2002/11/10 23:22:06 robertj
* Cosmetic change
*
* Revision 2.5 2002/11/10 11:33:16 robertj
* Updated to OpenH323 v1.10.3
*
* Revision 2.4 2002/09/16 02:52:33 robertj
* Added #define so can select if #pragma interface/implementation is used on
* platform basis (eg MacOS) rather than compiler, thanks Robert Monaghan.
*
* Revision 2.3 2002/09/04 06:01:46 robertj
* Updated to OpenH323 v1.9.6
*
* Revision 2.2 2001/11/02 10:45:19 robertj
* Updated to OpenH323 v1.7.3
*
* Revision 2.1 2001/08/01 05:03:09 robertj
* Changes to allow control of linking software transcoders, use macros
* to force linking.
* Allowed codecs to be used without H.,323 being linked by using the
* new NO_H323 define.
* Major changes to H.323 capabilities, uses OpalMediaFormat for base name.
*
* Revision 2.0 2001/07/27 15:48:24 robertj
* Conversion of OpenH323 to Open Phone Abstraction Library (OPAL)
*
* Revision 1.11 2002/09/30 09:32:50 craigs
* Removed ability to set no. of frames per packet for MS-GSM - there can be only one!
*
* Revision 1.10 2002/09/16 01:14:15 robertj
* Added #define so can select if #pragma interface/implementation is used on
* platform basis (eg MacOS) rather than compiler, thanks Robert Monaghan.
*
* Revision 1.9 2002/09/03 05:41:56 robertj
* Normalised the multi-include header prevention ifdef/define symbol.
* Added globally accessible functions for media format names.
*
* Revision 1.8 2002/08/05 10:03:47 robertj
* Cosmetic changes to normalise the usage of pragma interface/implementation.
*
* Revision 1.7 2001/10/24 01:20:34 robertj
* Added code to help with static linking of H323Capability names database.
*
* Revision 1.6 2001/03/08 01:42:20 robertj
* Cosmetic changes to recently added MS IMA ADPCM codec.
*
* Revision 1.5 2001/03/08 00:57:46 craigs
* Added MS-IMA codec thanks to Liu Hao. Not yet working - do not use
*
* Revision 1.4 2001/02/09 05:16:24 robertj
* Added #pragma interface for GNU C++.
*
* Revision 1.3 2001/01/25 07:27:14 robertj
* Major changes to add more flexible OpalMediaFormat class to normalise
* all information about media types, especially codecs.
*
* Revision 1.2 2001/01/09 23:05:22 robertj
* Fixed inability to have 2 non standard codecs in capability table.
*
* Revision 1.1 2000/08/23 14:23:11 craigs
* Added prototype support for Microsoft GSM codec
*
*
*/
#ifndef __OPAL_MSCODECS_H
#define __OPAL_MSCODECS_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <opal/buildopts.h>
#include <codec/gsmcodec.h>
#ifndef NO_H323
#include <h323/h323caps.h>
#endif
#define OPAL_MSGSM "MS-GSM"
#define OPAL_MSIMA "MS-IMA-ADPCM"
extern const OpalAudioFormat & GetOpalMSGSM();
extern const OpalAudioFormat & GetOpalMSIMA();
#define OpalMSGSM GetOpalMSGSM()
#define OpalMSIMA GetOpalMSIMA()
///////////////////////////////////////////////////////////////////////////////
#ifndef NO_H323
class MicrosoftNonStandardAudioCapability : public H323NonStandardAudioCapability
{
PCLASSINFO(MicrosoftNonStandardAudioCapability, H323NonStandardAudioCapability);
public:
MicrosoftNonStandardAudioCapability(
const BYTE * header,
PINDEX headerSize,
PINDEX offset,
PINDEX len
);
};
/////////////////////////////////////////////////////////////////////////
class MicrosoftGSMAudioCapability : public MicrosoftNonStandardAudioCapability
{
PCLASSINFO(MicrosoftGSMAudioCapability, MicrosoftNonStandardAudioCapability);
public:
MicrosoftGSMAudioCapability();
PObject * Clone() const;
PString GetFormatName() const;
void SetTxFramesInPacket(unsigned /*frames*/);
};
/////////////////////////////////////////////////////////////////////////
class MicrosoftIMAAudioCapability : public MicrosoftNonStandardAudioCapability
{
PCLASSINFO(MicrosoftIMAAudioCapability, MicrosoftNonStandardAudioCapability);
public:
MicrosoftIMAAudioCapability();
PObject * Clone() const;
PString GetFormatName() const;
};
#ifdef H323_STATIC_LIB
H323_STATIC_LOAD_REGISTER_CAPABILITY(MicrosoftGSMAudioCapability);
H323_STATIC_LOAD_REGISTER_CAPABILITY(MicrosoftIMAAudioCapability);
#endif
#define OPAL_REGISTER_MSCODECS_H323 \
H323_REGISTER_CAPABILITY(MicrosoftGSMAudioCapability, OPAL_MSGSM) \
H323_REGISTER_CAPABILITY(MicrosoftIMAAudioCapability, OPAL_MSIMA)
#else // ifndef NO_H323
#define OPAL_REGISTER_MSCODECS_H323
#endif // ifndef NO_H323
///////////////////////////////////////////////////////////////////////////////
class Opal_MSGSM_PCM : public Opal_GSM0610 {
public:
Opal_MSGSM_PCM();
virtual BOOL ConvertFrame(const BYTE * src, BYTE * dst);
};
class Opal_PCM_MSGSM : public Opal_GSM0610 {
public:
Opal_PCM_MSGSM();
virtual BOOL ConvertFrame(const BYTE * src, BYTE * dst);
};
///////////////////////////////////////////////////////////////////////////////
class Opal_MSIMA_PCM : public OpalFramedTranscoder {
public:
Opal_MSIMA_PCM();
virtual BOOL ConvertFrame(const BYTE * src, BYTE * dst);
};
struct adpcm_state {
short valprev; /* Previous output value */
char index; /* Index into stepsize table */
};
class Opal_PCM_MSIMA : public OpalFramedTranscoder {
public:
Opal_PCM_MSIMA();
virtual BOOL ConvertFrame(const BYTE * src, BYTE * dst);
protected:
adpcm_state s_adpcm;
};
///////////////////////////////////////////////////////////////////////////////
#define OPAL_REGISTER_MSCODECS() \
OPAL_REGISTER_MSCODECS_H323 \
OPAL_REGISTER_TRANSCODER(Opal_MSGSM_PCM, OpalMSGSM, OpalPCM16); \
OPAL_REGISTER_TRANSCODER(Opal_PCM_MSGSM, OpalPCM16, OpalMSGSM); \
OPAL_REGISTER_TRANSCODER(Opal_MSIMA_PCM, OpalMSIMA, OpalPCM16); \
OPAL_REGISTER_TRANSCODER(Opal_PCM_MSIMA, OpalPCM16, OpalMSIMA)
#endif // __OPAL_MSCODECS_H
/////////////////////////////////////////////////////////////////////////
|