diff options
author | Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr> | 2017-04-24 18:43:57 +0200 |
---|---|---|
committer | Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr> | 2017-04-24 18:43:57 +0200 |
commit | 6dc10f6d3e410544b1068de2565cab2b9b8aa3ec (patch) | |
tree | 0778e45f04bbac376ac25b0383f64c01c0b95fc9 /Input | |
parent | ab05f3c8bb9112e61804515d1e06f7afec2e3fa6 (diff) |
corrections
Change-Id: I07d00ea0d02b044d543a83bca10f8e73a281f90b
Signed-off-by: Angelo Mantellini (manangel) <angelo.mantellini@irt-systemx.fr>
Diffstat (limited to 'Input')
-rw-r--r-- | Input/DASHReceiver.cpp | 2 | ||||
-rw-r--r-- | Input/ICNConnectionConsumerApi.cpp | 3 | ||||
-rw-r--r-- | Input/ICNConnectionConsumerApi.h | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/Input/DASHReceiver.cpp b/Input/DASHReceiver.cpp index df9d019b..e7a5c5c2 100644 --- a/Input/DASHReceiver.cpp +++ b/Input/DASHReceiver.cpp @@ -133,7 +133,7 @@ MediaObject* DASHReceiver::GetNextSegment () if(this->segmentNumber >= this->representationStream->getSize()) { - qDebug("looping? : %s\n", this->isLooping ? "YES" : "NO"); + //qDebug("looping? : %s\n", this->isLooping ? "YES" : "NO"); if(this->isLooping) { this->segmentNumber = 0; diff --git a/Input/ICNConnectionConsumerApi.cpp b/Input/ICNConnectionConsumerApi.cpp index 9de82908..d38642e4 100644 --- a/Input/ICNConnectionConsumerApi.cpp +++ b/Input/ICNConnectionConsumerApi.cpp @@ -68,7 +68,6 @@ ICNConnectionConsumerApi::ICNConnectionConsumerApi(double alpha, float beta, flo } if(!configFile) { - qDebug("beta %f, drop %f", this->beta, this->drop); this->myConsumer->setSocketOption(RaaqmTransportOptions::BETA_VALUE, this->beta); this->myConsumer->setSocketOption(RaaqmTransportOptions::DROP_FACTOR, this->drop); } @@ -111,8 +110,6 @@ void ICNConnectionConsumerApi::Init(IChunk *chunk) { memset(this->deezData, 0, this->deezDataSize); } - qDebug("ICN_Connection:\tINTIATED_to_name %s\n", m_name.c_str()); - qDebug("ICN_Connection:\tSTARTING DOWNLOAD %s\n", m_name.c_str()); } void ICNConnectionConsumerApi::InitForMPD(const std::string& url) diff --git a/Input/ICNConnectionConsumerApi.h b/Input/ICNConnectionConsumerApi.h index a0343443..a62f6b01 100644 --- a/Input/ICNConnectionConsumerApi.h +++ b/Input/ICNConnectionConsumerApi.h @@ -16,7 +16,6 @@ #ifndef QTPLAYER_INPUT_ICNCONNECTIONCONSUMERAPI_H_ #define QTPLAYER_INPUT_ICNCONNECTIONCONSUMERAPI_H_ -#include <QMessageLogger> #include "../Portable/Networking.h" #include "IICNConnection.h" #include "../debug.h" |