Changeset 2875
- Timestamp:
- Aug 13, 2009 3:57:26 PM (15 years ago)
- Location:
- pjproject/trunk/pjmedia/include
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia-codec/amr_helper.h
r2506 r2875 34 34 /** 35 35 * @defgroup PJMED_AMR_CODEC_HELPER AMR Codec Helper 36 * @ingroup PJMEDIA_CODEC 36 * @ingroup PJMEDIA_CODEC_CODECS 37 37 * @brief AMR common tables and helper functions. 38 38 * @{ -
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__ */ -
pjproject/trunk/pjmedia/include/pjmedia-codec/g722.h
r2394 r2875 30 30 /** 31 31 * @defgroup PJMED_G722 G.722 Codec 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of G.722 Codec 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/g7221.h
r2620 r2875 30 30 /** 31 31 * @defgroup PJMED_G7221_CODEC G722.1 Codec 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of G722.1 codec 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/gsm.h
r2394 r2875 30 30 /** 31 31 * @defgroup PJMED_GSM GSM 06.10 Codec 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of GSM FR based on GSM 06.10 library 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/ilbc.h
r2394 r2875 30 30 /** 31 31 * @defgroup PJMED_ILBC iLBC Codec 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of iLBC Codec 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/ipp_codecs.h
r2394 r2875 30 30 /** 31 31 * @defgroup PJMED_IPP_CODEC IPP Codecs 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of IPP codecs 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/l16.h
r2394 r2875 26 26 /** 27 27 * @defgroup PJMED_L16 L16 Codec Family 28 * @ingroup PJMEDIA_CODEC 28 * @ingroup PJMEDIA_CODEC_CODECS 29 29 * @brief PCM/16bit/linear codecs 30 30 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/passthrough.h
r2834 r2875 30 30 /** 31 31 * @defgroup PJMED_PASSTHROUGH_CODEC Passthrough Codecs 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of passthrough codecs 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/speex.h
r2394 r2875 30 30 /** 31 31 * @defgroup PJMED_SPEEX Speex Codec Family 32 * @ingroup PJMEDIA_CODEC 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Implementation of Speex codecs (narrow/wide/ultrawide-band). 34 34 * @{ -
pjproject/trunk/pjmedia/include/pjmedia-codec/types.h
r2563 r2875 21 21 #define __PJMEDIA_CODEC_TYPES_H__ 22 22 23 /** 24 * @file types.h 25 * @brief PJMEDIA-CODEC types and constants 26 */ 27 23 28 #include <pjmedia-codec/config.h> 29 30 /** 31 * @defgroup pjmedia_codec_types PJMEDIA-CODEC Types and Constants 32 * @ingroup PJMEDIA_CODEC 33 * @brief Constants used by PJMEDIA-CODEC 34 * @{ 35 */ 36 37 24 38 25 39 /** … … 72 86 }; 73 87 88 /** 89 * @} 90 */ 74 91 75 92 -
pjproject/trunk/pjmedia/include/pjmedia/codec.h
r2506 r2875 860 860 */ 861 861 862 /** 863 * @defgroup PJMEDIA_CODEC_CODECS Supported codecs 864 * @ingroup PJMEDIA_CODEC 865 * @brief Documentation about individual codec supported by PJMEDIA 866 * @{ 867 * Please see the APIs provided by the individual codecs below. 868 */ 869 /** 870 * @} 871 */ 872 873 874 875 862 876 PJ_END_DECL 863 877 -
pjproject/trunk/pjmedia/include/pjmedia/g711.h
r2394 r2875 29 29 30 30 /** 31 * @defgroup PJMED_G711 G711 32 * @ingroup PJMEDIA_CODEC 31 * @defgroup PJMED_G711 G711 G.711 Codec 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Standard G.711/PCMA and PCMU codec. 34 34 * @{
Note: See TracChangeset
for help on using the changeset viewer.