We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de910b1 commit d34ec86Copy full SHA for d34ec86
FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/FFmpeg.java
@@ -111,7 +111,9 @@ public boolean isFFmpegCommandRunning() {
111
112
@Override
113
public boolean killRunningProcesses() {
114
- return Util.killAsync(ffmpegLoadLibraryAsyncTask) || Util.killAsync(ffmpegExecuteAsyncTask);
+ boolean status = Util.killAsync(ffmpegLoadLibraryAsyncTask) || Util.killAsync(ffmpegExecuteAsyncTask);
115
+ ffmpegExecuteAsyncTask = null;
116
+ return status;
117
}
118
119
0 commit comments