Ignore:
Timestamp:
Jun 12, 2008 12:48:59 PM (16 years ago)
Author:
nanang
Message:

Ticket #542: added new API and macro for sound device latency settings, also added new param for this in pjsua

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/symbian_sound.cpp

    r1688 r2007  
    928928} 
    929929 
     930 
     931/* 
     932 * Set sound latency. 
     933 */ 
     934PJ_DEF(pj_status_t) pjmedia_snd_set_latency(unsigned input_latency,  
     935                                            unsigned output_latency) 
     936{ 
     937    /* Nothing to do */ 
     938    PJ_UNUSED_ARG(input_latency); 
     939    PJ_UNUSED_ARG(output_latency); 
     940    return PJ_SUCCESS; 
     941} 
Note: See TracChangeset for help on using the changeset viewer.