summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/encoderlame.cpp
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-06-24 18:37:47 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-06-25 00:04:44 +0200
commit388014567fae75c9324d861986bd8e02a74301ba (patch)
treebdeb1ba35242f55394bdf2f63e3eaeba996e94b2 /rbutil/rbutilqt/base/encoderlame.cpp
parent277533fb57ee396cbee49ede635a068a98686d1e (diff)
downloadrockbox-388014567fae75c9324d861986bd8e02a74301ba.tar.gz
rockbox-388014567fae75c9324d861986bd8e02a74301ba.zip
Add missing class name to System Trace log.
To identify the source for System Trace entries qDebug() calls usually add the class name at the beginning. Add some missing ones and remove some trailing spaces. Change-Id: I3179bb206e96de8b5a1c05c0fc0958936e4513f3
Diffstat (limited to 'rbutil/rbutilqt/base/encoderlame.cpp')
-rw-r--r--rbutil/rbutilqt/base/encoderlame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/base/encoderlame.cpp b/rbutil/rbutilqt/base/encoderlame.cpp
index 6cc93ff742..d545559656 100644
--- a/rbutil/rbutilqt/base/encoderlame.cpp
+++ b/rbutil/rbutilqt/base/encoderlame.cpp
@@ -178,7 +178,7 @@ bool EncoderLame::encode(QString input,QString output)
178 // input format used should be known. In case some TTS uses a 178 // input format used should be known. In case some TTS uses a
179 // different wave encoding some time this needs to get adjusted. 179 // different wave encoding some time this needs to get adjusted.
180 if(chunkdatalen < 16) { 180 if(chunkdatalen < 16) {
181 qDebug() << "fmt chunk too small!"; 181 qDebug() << "[EncoderLame] fmt chunk too small!";
182 } 182 }
183 else { 183 else {
184 unsigned char *buf = new unsigned char[chunkdatalen]; 184 unsigned char *buf = new unsigned char[chunkdatalen];