Ignore:
Timestamp:
Oct 29, 2009 9:39:17 AM (14 years ago)
Author:
bennylp
Message:

Ticket #983: make native WMME the default audio device on Windows and Windows Mobile:

  • increase default playback latency (PJMEDIA_SND_DEFAULT_PLAY_LATENCY) to 140ms for Win32 and 160ms for WM
  • set default PJMEDIA_SOUND_BUFFER_COUNT to (PJMEDIA_SND_DEFAULT_PLAY_LATENCY+20)/20 rather than hardcoded 6
  • disable PA from audiodev on Win32 and WM
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r2850 r2977  
    104104 
    105105/** 
    106  * Specify default sound device latency, in milisecond. 
     106 * Specify default sound device latency, in milisecond.  
     107 * 
     108 * Default is 160ms for Windows Mobile and 140ms for other platforms. 
    107109 */ 
    108110#ifndef PJMEDIA_SND_DEFAULT_PLAY_LATENCY 
    109 #   define PJMEDIA_SND_DEFAULT_PLAY_LATENCY 100 
     111#   if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0 
     112#       define PJMEDIA_SND_DEFAULT_PLAY_LATENCY     160 
     113#   else 
     114#       define PJMEDIA_SND_DEFAULT_PLAY_LATENCY     140 
     115#   endif 
    110116#endif 
    111117 
     
    221227 * combiner port, and dsound.c. 
    222228 * 
    223  * Default: 6 
     229 * Default: (PJMEDIA_SND_DEFAULT_PLAY_LATENCY+20)/20 
    224230 */ 
    225231#ifndef PJMEDIA_SOUND_BUFFER_COUNT 
    226 #   define PJMEDIA_SOUND_BUFFER_COUNT       6 
     232#   define PJMEDIA_SOUND_BUFFER_COUNT       ((PJMEDIA_SND_DEFAULT_PLAY_LATENCY+20)/20) 
    227233#endif 
    228234 
Note: See TracChangeset for help on using the changeset viewer.