[vlc-commits] auhal: remove debug stuff I forgot

Felix Paul Kühne git at videolan.org
Mon Dec 24 15:07:28 CET 2012


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Dec 24 15:07:25 2012 +0100| [646c64b0cb377b4da5d292f282eb8bc7bb2da3de] | committer: Felix Paul Kühne

auhal: remove debug stuff I forgot

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=646c64b0cb377b4da5d292f282eb8bc7bb2da3de
---

 modules/audio_output/auhal.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/modules/audio_output/auhal.c b/modules/audio_output/auhal.c
index 5f0b7c1..3629900 100644
--- a/modules/audio_output/auhal.c
+++ b/modules/audio_output/auhal.c
@@ -1296,9 +1296,7 @@ static OSStatus RenderCallbackAnalog(vlc_object_t *p_obj,
         /* return an empty buffer so silence is played until we have data */
         for (UInt32 j = 0; j < inNumberFrames; j++)
             targetBuffer[j] = 0.;
-        msg_Warn(p_aout, "no data, playing silence");
     } else {
-        msg_Warn(p_aout, "playing %i bytes", availableBytes);
         memcpy(targetBuffer, buffer, __MIN(bytesToCopy, availableBytes));
         TPCircularBufferConsume(&p_sys->circular_buffer, __MIN(bytesToCopy, availableBytes));
         VLC_UNUSED(inNumberFrames);



More information about the vlc-commits mailing list