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_aps_dev.cpp

    r3136 r3438  
    121121static pj_status_t factory_init(pjmedia_aud_dev_factory *f); 
    122122static pj_status_t factory_destroy(pjmedia_aud_dev_factory *f); 
     123static pj_status_t factory_refresh(pjmedia_aud_dev_factory *f); 
    123124static unsigned    factory_get_dev_count(pjmedia_aud_dev_factory *f); 
    124125static pj_status_t factory_get_dev_info(pjmedia_aud_dev_factory *f,  
     
    156157    &factory_get_dev_info, 
    157158    &factory_default_param, 
    158     &factory_create_stream 
     159    &factory_create_stream, 
     160    &factory_refresh 
    159161}; 
    160162 
     
    14451447} 
    14461448 
     1449/* API: refresh the device list */ 
     1450static pj_status_t factory_refresh(pjmedia_aud_dev_factory *f) 
     1451{ 
     1452    PJ_UNUSED_ARG(f); 
     1453    return PJ_ENOTSUP; 
     1454} 
     1455 
    14471456/* API: get number of devices */ 
    14481457static unsigned factory_get_dev_count(pjmedia_aud_dev_factory *f) 
Note: See TracChangeset for help on using the changeset viewer.