diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-22 08:36:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-22 08:36:52 +0000 |
commit | abc21952ac547e45f72d35c35bc7d746648947cc (patch) | |
tree | cf27691c1556b466ce28816340a1162c38d7af24 /libk3b/plugin/k3baudiodecoder.cpp | |
parent | 85723d544dd6aad9b2d0974dfe91ece438f03dfb (diff) | |
download | k3b-abc21952ac547e45f72d35c35bc7d746648947cc.tar.gz k3b-abc21952ac547e45f72d35c35bc7d746648947cc.zip |
Fix k3b FTBFS under Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1242628 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/plugin/k3baudiodecoder.cpp')
-rw-r--r-- | libk3b/plugin/k3baudiodecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/plugin/k3baudiodecoder.cpp b/libk3b/plugin/k3baudiodecoder.cpp index 54fe8ad..cf9add3 100644 --- a/libk3b/plugin/k3baudiodecoder.cpp +++ b/libk3b/plugin/k3baudiodecoder.cpp @@ -321,7 +321,7 @@ int K3bAudioDecoder::decode( char* _data, int maxLen ) int K3bAudioDecoder::resample( char* data, int maxLen ) { if( !d->resampleState ) { - d->resampleState = src_new( SRC_SINC_MEDIUM_TQUALITY, d->channels, 0 ); + d->resampleState = src_new( SRC_SINC_MEDIUM_QUALITY, d->channels, 0 ); if( !d->resampleState ) { kdDebug() << "(K3bAudioDecoder) unable to initialize resampler." << endl; return -1; |