Changeset 3083 for pjproject/trunk/pjmedia/include/pjmedia/g711.h
- Timestamp:
- Jan 29, 2010 3:51:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/g711.h
r2875 r3083 29 29 30 30 /** 31 * @defgroup PJMED_G711 G 711 G.711 Codec31 * @defgroup PJMED_G711 G.711 Codec 32 32 * @ingroup PJMEDIA_CODEC_CODECS 33 33 * @brief Standard G.711/PCMA and PCMU codec. 34 34 * @{ 35 * This section describes functions to register and register G.711 codec 35 * 36 * This section describes functions to initialize and register G.711 codec 36 37 * factory to the codec manager. After the codec factory has been registered, 37 38 * application can use @ref PJMEDIA_CODEC API to manipulate the codec. 39 * 40 * The G.711 is an ultra low complexity codecs and in trade-off it results 41 * in high bitrate, i.e: 64kbps for 16-bit PCM with sampling rate 8000Hz. 42 * 43 * The factory contains two main compression algorithms, PCMU/u-Law and 44 * PCMA/A-Law. 45 * 46 * \section codec_setting Codec Settings 47 * 48 * \subsection general_setting General Settings 49 * 50 * General codec settings for this codec such as VAD and PLC can be 51 * manipulated through the <tt>setting</tt> field in #pjmedia_codec_param. 52 * Please see the documentation of #pjmedia_codec_param for more info. 53 * 54 * \subsection specific_setting Codec Specific Settings 55 * 56 * Currently none. 38 57 */ 39 58
Note: See TracChangeset
for help on using the changeset viewer.