Ticket #5989: move_addaudiodata_from_IMPORTANT_TO_PLAYBACK.diff
File move_addaudiodata_from_IMPORTANT_TO_PLAYBACK.diff, 1.6 KB (added by , 16 years ago) |
---|
-
libs/libmythtv/NuppelVideoPlayer.cpp
4136 4136 if (!usevideotimebase) 4137 4137 { 4138 4138 if (!audioOutput->AddSamples(buffer, samples, timecode)) 4139 VERBOSE(VB_ IMPORTANT, "NVP::AddAudioData():p1: "4139 VERBOSE(VB_PLAYBACK, "NVP::AddAudioData():p1: " 4140 4140 "Audio buffer overflow, audio data lost!"); 4141 4141 return; 4142 4142 } … … 4169 4169 4170 4170 // Send new warped audio to audioOutput 4171 4171 if (!audioOutput->AddSamples((char*)warplbuff, samples, timecode)) 4172 VERBOSE(VB_ IMPORTANT,"NVP::AddAudioData():p2: "4172 VERBOSE(VB_PLAYBACK,"NVP::AddAudioData():p2: " 4173 4173 "Audio buffer overflow, audio data lost!"); 4174 4174 } 4175 4175 … … 4197 4197 buffers[0] = (char*) lbuffer; 4198 4198 buffers[1] = (char*) rbuffer; 4199 4199 if (!audioOutput->AddSamples(buffers, samples, timecode)) 4200 VERBOSE(VB_ IMPORTANT, "NVP::AddAudioData():p3: "4200 VERBOSE(VB_PLAYBACK, "NVP::AddAudioData():p3: " 4201 4201 "Audio buffer overflow, audio data lost!"); 4202 4202 return; 4203 4203 } … … 4232 4232 buffers[0] = (char*) warplbuff; 4233 4233 buffers[1] = (char*) warprbuff; 4234 4234 if (!audioOutput->AddSamples(buffers, samples, timecode)) 4235 VERBOSE(VB_ IMPORTANT, "NVP::AddAudioData():p4: "4235 VERBOSE(VB_PLAYBACK, "NVP::AddAudioData():p4: " 4236 4236 "Audio buffer overflow, audio data lost!"); 4237 4237 } 4238 4238