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
v3.5.13-sru
tpearson 14 years ago
parent 13c0220b02
commit e4f29b18e1

@ -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())

Loading…
Cancel
Save