summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-06-16 03:34:01 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-06-16 03:34:01 +0000
commite4f29b18e19394b9352f52a6c0d0d0e3932cf511 (patch)
tree4195730baa6d6abde42f351f1eb3a854022a92fe
parent13c0220b028523ea859b1522a13421f3a4b96574 (diff)
downloadtdemultimedia-e4f29b18.tar.gz
tdemultimedia-e4f29b18.zip
Disable explicit byte swapping; it breaks encoding under x86 and lame is now supposedly smart enough to detect endian-ness on its own now...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1138430 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-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())