@@ -369,14 +369,15 @@ sound_process_output_format(int aindex, int wFormatTag, int nChannels,
369369 int nBlockAlign , int wBitsPerSample ,
370370 int cbSize , char * data )
371371{
372- LOG_DEVEL (LOG_LEVEL_INFO , "sound_process_output_format:" );
373- LOG_DEVEL (LOG_LEVEL_INFO , " wFormatTag %d" , wFormatTag );
374- LOG_DEVEL (LOG_LEVEL_INFO , " nChannels %d" , nChannels );
375- LOG_DEVEL (LOG_LEVEL_INFO , " nSamplesPerSec %d" , nSamplesPerSec );
376- LOG_DEVEL (LOG_LEVEL_INFO , " nAvgBytesPerSec %d" , nAvgBytesPerSec );
377- LOG_DEVEL (LOG_LEVEL_INFO , " nBlockAlign %d" , nBlockAlign );
378- LOG_DEVEL (LOG_LEVEL_INFO , " wBitsPerSample %d" , wBitsPerSample );
379- LOG_DEVEL (LOG_LEVEL_INFO , " cbSize %d" , cbSize );
372+ LOG (LOG_LEVEL_INFO , "sound_process_output_format:" );
373+ LOG (LOG_LEVEL_INFO , " wFormatNo %d" , aindex );
374+ LOG (LOG_LEVEL_INFO , " wFormatTag %s" , audin_wave_format_tag_to_str (wFormatTag ));
375+ LOG (LOG_LEVEL_INFO , " nChannels %d" , nChannels );
376+ LOG (LOG_LEVEL_INFO , " nSamplesPerSec %d" , nSamplesPerSec );
377+ LOG (LOG_LEVEL_INFO , " nAvgBytesPerSec %d" , nAvgBytesPerSec );
378+ LOG (LOG_LEVEL_INFO , " nBlockAlign %d" , nBlockAlign );
379+ LOG (LOG_LEVEL_INFO , " wBitsPerSample %d" , wBitsPerSample );
380+ LOG (LOG_LEVEL_INFO , " cbSize %d" , cbSize );
380381
381382 LOG_DEVEL_HEXDUMP (LOG_LEVEL_TRACE , "" , data , cbSize );
382383
@@ -898,6 +899,8 @@ sound_send_wave_data_chunk(char *data, int data_bytes)
898899 format_index = g_current_client_format_index ;
899900 data_bytes = sound_wave_compress (data , data_bytes , & format_index );
900901
902+ LOG (LOG_LEVEL_TRACE , "sound_send_wave_data_chunk: wFormatNo %d" , format_index );
903+
901904 /* part one of 2 PDU wave info */
902905
903906 LOG_DEVEL (LOG_LEVEL_DEBUG , "sound_send_wave_data_chunk: sending %d bytes" , data_bytes );
@@ -1057,7 +1060,7 @@ sound_process_wave_confirm(struct stream *s, int size)
10571060 in_uint8 (s , cConfirmedBlockNo );
10581061 time_diff = time - g_sent_time [cConfirmedBlockNo & 0xff ];
10591062
1060- LOG (LOG_LEVEL_DEBUG , "sound_process_wave_confirm: wTimeStamp %d, "
1063+ LOG (LOG_LEVEL_TRACE , "sound_process_wave_confirm: wTimeStamp %d, "
10611064 "cConfirmedBlockNo %d time diff %d" ,
10621065 wTimeStamp , cConfirmedBlockNo , time_diff );
10631066
0 commit comments