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/nullsound.c

    r1269 r2007  
    182182} 
    183183 
     184/* 
     185 * Set sound latency. 
     186 */ 
     187PJ_DEF(pj_status_t) pjmedia_snd_set_latency(unsigned input_latency,  
     188                                            unsigned output_latency) 
     189{ 
     190    /* Nothing to do */ 
     191    PJ_UNUSED_ARG(input_latency); 
     192    PJ_UNUSED_ARG(output_latency); 
     193    return PJ_SUCCESS; 
     194} 
     195 
    184196#endif  /* PJMEDIA_SOUND_IMPLEMENTATION */ 
Note: See TracChangeset for help on using the changeset viewer.