Changeset 2875 for pjproject/trunk/pjmedia/include/pjmedia-codec/config.h
- Timestamp:
- Aug 13, 2009 3:57:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia-codec/config.h
r2763 r2875 21 21 #define __PJMEDIA_CODEC_CONFIG_H__ 22 22 23 /** 24 * @file config.h 25 * @brief PJMEDIA-CODEC compile time settings 26 */ 27 28 /** 29 * @defgroup pjmedia_codec_config PJMEDIA-CODEC Compile Time Settings 30 * @ingroup PJMEDIA_CODEC 31 * @brief Various compile time settings such as to enable/disable codecs 32 * @{ 33 */ 34 23 35 #include <pjmedia/types.h> 36 24 37 25 38 /* … … 204 217 #endif 205 218 219 /** 220 * Enable AMR passthrough codec. 221 * 222 * Default: 1 223 */ 206 224 #ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR 207 225 # define PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR 1 208 226 #endif 209 227 228 /** 229 * Enable G.729 passthrough codec. 230 * 231 * Default: 1 232 */ 210 233 #ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_G729 211 234 # define PJMEDIA_HAS_PASSTHROUGH_CODEC_G729 1 212 235 #endif 213 236 237 /** 238 * Enable iLBC passthrough codec. 239 * 240 * Default: 1 241 */ 214 242 #ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC 215 243 # define PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC 1 216 244 #endif 217 245 246 /** 247 * Enable PCMU passthrough codec. 248 * 249 * Default: 1 250 */ 218 251 #ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMU 219 252 # define PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMU 1 220 253 #endif 221 254 255 /** 256 * Enable PCMA passthrough codec. 257 * 258 * Default: 1 259 */ 222 260 #ifndef PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMA 223 261 # define PJMEDIA_HAS_PASSTHROUGH_CODEC_PCMA 1 … … 272 310 #endif 273 311 312 /** 313 * @} 314 */ 315 274 316 #endif /* __PJMEDIA_CODEC_CONFIG_H__ */
Note: See TracChangeset
for help on using the changeset viewer.