1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-30 04:58:40 +01:00

less debug for libvlc output

This commit is contained in:
dridri 2014-10-01 13:30:48 +02:00 committed by Uwe L. Korn
parent 439335ecef
commit 5fb5bc4f82
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ MediaStream::readCallback ( void* data, const char* cookie, int64_t* dts, int64_
int
MediaStream::readDoneCallback ( void *data, const char *cookie, size_t bufferSize, void *buffer )
{
tDebug() << Q_FUNC_INFO;
// tDebug() << Q_FUNC_INFO;
Q_UNUSED(cookie);
Q_UNUSED(bufferSize);

View File

@ -106,7 +106,7 @@ QNR_IODeviceStream::needData ( void** buffer )
*buffer = new char[data.size()];
memcpy(*buffer, data.data(), data.size());
tDebug() << Q_FUNC_INFO << " Returning buffer with size " << data.size();
// tDebug() << Q_FUNC_INFO << " Returning buffer with size " << data.size();
return data.size();
}