[vlc-devel] [PATCH 09/13] dash: removed couts from downloader

Christopher at mailsrv.uni-klu.ac.at Christopher at mailsrv.uni-klu.ac.at
Sat Feb 11 12:00:00 CET 2012


From: Christopher Mueller <christopher.mueller at itec.aau.at>

---
 modules/stream_filter/dash/DASHDownloader.cpp |    9 ---------
 1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/modules/stream_filter/dash/DASHDownloader.cpp b/modules/stream_filter/dash/DASHDownloader.cpp
index 1e190bf..df49c98 100644
--- a/modules/stream_filter/dash/DASHDownloader.cpp
+++ b/modules/stream_filter/dash/DASHDownloader.cpp
@@ -42,13 +42,9 @@ DASHDownloader::DASHDownloader  (HTTPConnectionManager *conManager, IAdaptationL
 }
 DASHDownloader::~DASHDownloader ()
 {
-    std::cout << "Downloader set eof" << std::endl;
     this->t_sys->buffer->setEOF(true);
-    std::cout << "Downloader try to join" << std::endl;
     vlc_join(this->dashDLThread, NULL);
     free(this->t_sys);
-
-    std::cout << "Downloader thread joined tsys freed" << std::endl;
 }
 
 bool        DASHDownloader::start       ()
@@ -92,16 +88,11 @@ void*       DASHDownloader::download    (void *thread_sys)
                 block_t *bufBlock = block_Alloc(ret);
                 memcpy(bufBlock->p_buffer, block->p_buffer, ret);
                 bufBlock->i_length = (mtime_t)((ret * 8) / ((float)currentChunk->getBitrate() / 1000000));
-
-                std::cout << "Put block into buffer MilliSeconds: " << bufBlock->i_length
-                          << " Bytes: " << bufBlock->i_buffer
-                          << " Bitrate: " << currentChunk->getBitrate() << std::endl;
                 buffer->put(bufBlock);
             }
         }
     }while(!buffer->getEOF());
 
-    std::cout << "Downloader end: " << std::endl;
     block_Release(block);
 
     return NULL;
-- 
1.7.0.4




More information about the vlc-devel mailing list