From e4f29b18e19394b9352f52a6c0d0d0e3932cf511 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 16 Jun 2010 03:34:01 +0000 Subject: 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 --- kioslave/audiocd/plugins/lame/encoderlame.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kioslave/audiocd') 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()) -- cgit v1.2.1