summaryrefslogtreecommitdiffstats
path: root/kioslave/audiocd/plugins/lame/encoderlame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/audiocd/plugins/lame/encoderlame.cpp')
-rw-r--r--kioslave/audiocd/plugins/lame/encoderlame.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kioslave/audiocd/plugins/lame/encoderlame.cpp b/kioslave/audiocd/plugins/lame/encoderlame.cpp
index bf589e78..16cf2bee 100644
--- a/kioslave/audiocd/plugins/lame/encoderlame.cpp
+++ b/kioslave/audiocd/plugins/lame/encoderlame.cpp
@@ -221,11 +221,11 @@ long EncoderLame::readInit(long /*size*/){
// -x bitswap
// -r raw/pcm
// -s 44.1 (because it is raw you have to specify this)
-#if __BYTE_ORDER == __LITTLE_ENDIAN
- *(d->currentEncodeProcess) << "lame" << "--verbose" << "-x" << "-r" << "-s" << "44.1";
-#else
+// #if __BYTE_ORDER == __LITTLE_ENDIAN
+// *(d->currentEncodeProcess) << "lame" << "--verbose" << "-x" << "-r" << "-s" << "44.1";
+// #else
*(d->currentEncodeProcess) << "lame" << "--verbose" << "-r" << "-s" << "44.1";
-#endif
+// #endif
*(d->currentEncodeProcess) << args;
if(Settings::self()->id3_tag())