Ignore:
Timestamp:
Feb 22, 2009 5:15:34 PM (15 years ago)
Author:
bennylp
Message:
  • Added pjmedia-audiodev/config.h
  • Added a bit of doxygen documentation
  • Added support for PCMA/PCMU codecs in wmme_dev.c
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/aps-direct/pjmedia/include/pjmedia-audiodev/audiodev.h

    r2469 r2470  
    2525 * @brief Audio device API. 
    2626 */ 
     27#include <pjmedia-audiodev/config.h> 
    2728#include <pjmedia/port.h> 
    2829#include <pj/pool.h> 
     
    3233 
    3334/** 
    34  * @defgroup PJMED_AUD_DEV Audio device API 
    35  * @ingroup PJMED_AUD_PORT 
    36  * @brief API to work with audio devices and to implement new audio device backends. 
    37  * @{ 
    38  * 
    39  * The audio device API contains two parts: 
    40  *  - the base API, for both applications and audio device implementors, and 
    41  *  - the API for audio device implementors, for extending the audio device 
    42  *    framework with new audio device drivers. 
    43  * 
    44  * @} 
    45  */ 
    46  
    47 /** 
    48  * @defgroup PJMED_AUD_DEV_API Base Audio Device API 
    49  * @ingroup PJMED_AUD_DEV 
    50  * @brief The base API, for both applications and audio device implementors 
     35 * @defgroup s2_audio_device_reference Audio Device API Reference 
     36 * @ingroup audio_device_api 
     37 * @brief API Reference 
    5138 * @{ 
    5239 */ 
     
    222209 
    223210/** 
    224  * Device information structure returned by #pjmedia_aud_get_dev_info. 
     211 * Device information structure returned by #pjmedia_aud_dev_get_info(). 
    225212 */ 
    226213typedef struct pjmedia_aud_dev_info 
     
    498485 * @param drv_name      The driver name. 
    499486 * @param dev_name      The device name. 
     487 * @param id            Pointer to store the returned device ID. 
    500488 * 
    501489 * @return              PJ_SUCCESS if the device can be found. 
     
    530518 * @param user_data     Arbitrary user data, which will be given back in the 
    531519 *                      callbacks. 
    532  * @param p_aud_strm    Pointer to receive the audio stream. 
     520 * @param p_strm        Pointer to receive the audio stream. 
    533521 * 
    534522 * @return              PJ_SUCCESS on successful operation or the appropriate 
     
    635623#define PJMEDIA_EAUD_SYSERR     -1 
    636624 
    637  
    638 /** 
    639  * @) 
     625/* Bad or invalid format */ 
     626#define PJMEDIA_EAUD_BADFORMAT  -1 
     627 
     628/** 
     629 * @} 
    640630 */ 
    641631 
Note: See TracChangeset for help on using the changeset viewer.