Changeset 518 for pjproject/trunk/pjmedia/include/pjmedia-codec/speex.h
- Timestamp:
- Jun 18, 2006 2:02:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia-codec/speex.h
r278 r518 20 20 #define __PJMEDIA_CODEC_SPEEX_H__ 21 21 22 /** 23 * @file speex.h 24 * @brief Speex codec header. 25 */ 26 22 27 #include <pjmedia-codec/types.h> 23 28 29 /** 30 * @defgroup PJMED_SPEEX Speex 31 * @ingroup PJMEDIA_CODEC 32 * @brief Implementation of Speex codecs (narrow/wide/ultrawide-band). 33 * @{ 34 * This section describes functions to register and register speex codec 35 * factory to the codec manager. After the codec factory has been registered, 36 * application can use @ref PJMEDIA_CODEC API to manipulate the codec. 37 * 38 * By default, the speex codec factory registers three Speex codecs: 39 * "speex/8000" narrowband codec, "speex/16000" wideband codec, and 40 * "speex/32000" ultra-wideband codec. This behavior can be changed by 41 * specifying #pjmedia_speex_options flags during initialization. 42 */ 24 43 25 44 PJ_BEGIN_DECL … … 60 79 * 61 80 * @param endpt The pjmedia endpoint. 62 * @param options Bitmask of pjmedia_speex_options (default=0).63 * @param quality Specify encoding quality, or use -1 for default64 * (default=8).65 * @param complexity Specify encoding complexity , or use -1 for default66 * (default=8).67 81 * 68 82 * @return PJ_SUCCESS on success. … … 83 97 PJ_END_DECL 84 98 99 /** 100 * @} 101 */ 85 102 86 103 #endif /* __PJMEDIA_CODEC_SPEEX_H__ */
Note: See TracChangeset
for help on using the changeset viewer.