- Timestamp:
- May 14, 2006 9:29:53 PM (19 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/config.c
r424 r445 22 22 23 23 static const char *id = "config.c"; 24 const char *PJ_VERSION = "0.5.5. 1";24 const char *PJ_VERSION = "0.5.5.5"; 25 25 26 26 PJ_DEF(void) pj_dump_config(void) -
pjproject/trunk/pjmedia/include/pjmedia/config.h
r443 r445 35 35 */ 36 36 #ifndef PJMEDIA_SOUND_IMPLEMENTATION 37 //# define PJMEDIA_SOUND_IMPLEMENTATION PJMEDIA_SOUND_PORTAUDIO_SOUND 37 # if defined(PJ_WIN32) && PJ_WIN32!=0 38 38 # define PJMEDIA_SOUND_IMPLEMENTATION PJMEDIA_SOUND_WIN32_DIRECT_SOUND 39 # else 40 # define PJMEDIA_SOUND_IMPLEMENTATION PJMEDIA_SOUND_PORTAUDIO_SOUND 41 # endif 39 42 #endif 40 43 -
pjproject/trunk/pjsip-apps/src/samples/sndinfo.c
r412 r445 128 128 ++rec_counter; 129 129 130 if (timestamp - last_rec_timestamp >= clock_rate ) {130 if (timestamp - last_rec_timestamp >= clock_rate && last_play_timestamp) { 131 131 int diff; 132 132 diff = last_play_timestamp - timestamp;
Note: See TracChangeset
for help on using the changeset viewer.