diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 17:21:38 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:39:44 +0900 |
commit | 52fb3a0dd7d190b83257b86738b313a02868d133 (patch) | |
tree | ad5e6f9e72e0ea0820861a05c185e11ae39edcf3 /tdeioslave/audiocd/plugins/lame/encoderlame.cpp | |
parent | 4767a3730d12a9e9f2d428d46da80467d73e5015 (diff) | |
download | tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.tar.gz tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeioslave/audiocd/plugins/lame/encoderlame.cpp')
-rw-r--r-- | tdeioslave/audiocd/plugins/lame/encoderlame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeioslave/audiocd/plugins/lame/encoderlame.cpp b/tdeioslave/audiocd/plugins/lame/encoderlame.cpp index 8f5888be..d4e0f199 100644 --- a/tdeioslave/audiocd/plugins/lame/encoderlame.cpp +++ b/tdeioslave/audiocd/plugins/lame/encoderlame.cpp @@ -281,7 +281,7 @@ long EncoderLame::read(int16_t *buf, int frames){ // We can't return until the buffer has been written d->waitingForWrite = true; while(d->waitingForWrite && d->currentEncodeProcess->isRunning()){ - kapp->processEvents(); + tdeApp->processEvents(); usleep(1); } @@ -299,7 +299,7 @@ long EncoderLame::readCleanup(){ // Let lame tag the first frame of the mp3 d->currentEncodeProcess->closeStdin(); while( d->currentEncodeProcess->isRunning()){ - kapp->processEvents(); + tdeApp->processEvents(); usleep(1); } |