Author: adrian
Date: Sat Mar 19 05:52:11 2011
New Revision: 9392

URL: http://svn.slimdevices.com/jive?rev=9392&view=rev
Log:
Bug: N/A
Description: hide some verbose debugging

Modified:
    7.6/trunk/squeezeplay/src/luartmp-squeezeplay/rtmp.c

Modified: 7.6/trunk/squeezeplay/src/luartmp-squeezeplay/rtmp.c
URL: 
http://svn.slimdevices.com/jive/7.6/trunk/squeezeplay/src/luartmp-squeezeplay/rtmp.c?rev=9392&r1=9391&r2=9392&view=diff
==============================================================================
--- 7.6/trunk/squeezeplay/src/luartmp-squeezeplay/rtmp.c (original)
+++ 7.6/trunk/squeezeplay/src/luartmp-squeezeplay/rtmp.c Sat Mar 19 05:52:11 
2011
@@ -339,7 +339,7 @@
                        header[3] |= ((framesize >> 11) & 0x03);
                        header[4] |= ((framesize >>  3) & 0xFF);
                        header[5] |= ((framesize <<  5) & 0xE0);
-                       LOG_DEBUG(log_audio_decode, "aac audio data: %d 
timestamp: %d", framesize, entry->ts);
+                       // LOG_DEBUG(log_audio_decode, "aac audio data: %d 
timestamp: %d", framesize, entry->ts);
                        if (n > framesize) {
                                streambuf_feed(header, 7);
                                streambuf_feed(buf + 2, entry->len - 2);
@@ -365,7 +365,7 @@
                
        } else if ((*buf & 0xF0) == 0x20) {
                // MP3 audio
-               LOG_DEBUG(log_audio_decode, "mp3 audio data: %d timestamp: %d", 
entry->len - 1, entry->ts);
+               // LOG_DEBUG(log_audio_decode, "mp3 audio data: %d timestamp: 
%d", entry->len - 1, entry->ts);
                if (n >= entry->len - 1) {
                        streambuf_feed(buf + 1, entry->len - 1);
                } else {

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/jive-checkins

Reply via email to