Ignore:
Timestamp:
Mar 11, 2011 6:57:24 AM (13 years ago)
Author:
ming
Message:

Fixed #1204: Support for refreshing audio device list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-audiodev/symb_vas_dev.cpp

    r3201 r3438  
    131131static pj_status_t factory_init(pjmedia_aud_dev_factory *f); 
    132132static pj_status_t factory_destroy(pjmedia_aud_dev_factory *f); 
     133static pj_status_t factory_refresh(pjmedia_aud_dev_factory *f); 
    133134static unsigned    factory_get_dev_count(pjmedia_aud_dev_factory *f); 
    134135static pj_status_t factory_get_dev_info(pjmedia_aud_dev_factory *f,  
     
    166167    &factory_get_dev_info, 
    167168    &factory_default_param, 
    168     &factory_create_stream 
     169    &factory_create_stream, 
     170    &factory_refresh 
    169171}; 
    170172 
     
    14771479} 
    14781480 
     1481/* API: refresh the device list */ 
     1482static pj_status_t factory_refresh(pjmedia_aud_dev_factory *f) 
     1483{ 
     1484    PJ_UNUSED_ARG(f); 
     1485    return PJ_ENOTSUP; 
     1486} 
     1487 
    14791488/* API: get number of devices */ 
    14801489static unsigned factory_get_dev_count(pjmedia_aud_dev_factory *f) 
Note: See TracChangeset for help on using the changeset viewer.