Ignore:
Timestamp:
May 14, 2006 6:50:09 PM (18 years ago)
Author:
bennylp
Message:

Set default sound backend in Win32 to own DirectSound?, and changed conference clock to 10ms (from 20ms)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/dsound.c

    r372 r443  
    4545 
    4646#define MAX_PACKET_BUFFER_COUNT     32 
    47 #define DEFAULT_BUFFER_COUNT        5 
     47#define DEFAULT_BUFFER_COUNT        8 
    4848 
    4949 
     
    213213 
    214214    /* Done setting up play device. */ 
    215     PJ_LOG(5,(THIS_FILE, " DirectSound player stream initialized")); 
     215    PJ_LOG(5,(THIS_FILE,  
     216              " DirectSound player stream initialized (clock_rate=%d, " 
     217              "channel_count=%d, samples_per_frame=%d", 
     218              clock_rate, channel_count, samples_per_frame)); 
    216219 
    217220    return PJ_SUCCESS; 
     
    305308 
    306309    /* Done setting up recorder device. */ 
    307     PJ_LOG(5,(THIS_FILE, " DirectSound capture stream initialized")); 
     310    PJ_LOG(5,(THIS_FILE,  
     311              " DirectSound capture stream initialized (clock_rate=%d, " 
     312              "channel_count=%d, samples_per_frame=%d", 
     313              clock_rate, channel_count, samples_per_frame)); 
    308314 
    309315    return PJ_SUCCESS; 
Note: See TracChangeset for help on using the changeset viewer.