Changeset 209
- Timestamp:
- Feb 21, 2006 11:42:54 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/pasound.c
r173 r209 254 254 } 255 255 256 PJ_LOG( 4,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, "256 PJ_LOG(5,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, " 257 257 "%d bits per sample, %d samples per buffer", 258 258 (err==0 ? "Success" : "Error"), … … 333 333 } 334 334 335 PJ_LOG( 4,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, "335 PJ_LOG(5,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, " 336 336 "%d bits per sample, %d samples per buffer", 337 337 (err==0 ? "Success" : "Error"), … … 349 349 PJ_DEF(pj_status_t) pj_snd_stream_start(pj_snd_stream *stream) 350 350 { 351 PJ_LOG( 4,(THIS_FILE, "Starting stream.."));351 PJ_LOG(5,(THIS_FILE, "Starting stream..")); 352 352 return Pa_StartStream(stream->stream); 353 353 } … … 366 366 pj_thread_sleep(1); 367 367 368 PJ_LOG( 4,(THIS_FILE, "Stopping stream.."));368 PJ_LOG(5,(THIS_FILE, "Stopping stream..")); 369 369 370 370 err = Pa_StopStream(stream->stream); … … 388 388 paDevInfo = Pa_GetDeviceInfo(stream->dev_index); 389 389 390 PJ_LOG( 4,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow",390 PJ_LOG(5,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow", 391 391 paDevInfo->name, 392 392 stream->underflow, stream->overflow));
Note: See TracChangeset
for help on using the changeset viewer.