Ignore:
Timestamp:
Jun 18, 2006 2:02:36 AM (18 years ago)
Author:
bennylp
Message:

Updated doxygen documentation to all headers in PJMEDIA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia-codec/speex.h

    r278 r518  
    2020#define __PJMEDIA_CODEC_SPEEX_H__ 
    2121 
     22/** 
     23 * @file speex.h 
     24 * @brief Speex codec header. 
     25 */ 
     26 
    2227#include <pjmedia-codec/types.h> 
    2328 
     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 */ 
    2443 
    2544PJ_BEGIN_DECL 
     
    6079 * 
    6180 * @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 default  
    64  *                      (default=8). 
    65  * @param complexity    Specify encoding complexity , or use -1 for default  
    66  *                      (default=8). 
    6781 * 
    6882 * @return              PJ_SUCCESS on success. 
     
    8397PJ_END_DECL 
    8498 
     99/** 
     100 * @} 
     101 */ 
    85102 
    86103#endif  /* __PJMEDIA_CODEC_SPEEX_H__ */ 
Note: See TracChangeset for help on using the changeset viewer.