Allow PixmapRecorder.close() to be called on inactive recorders

This commit is contained in:
Elias Batek 2024-08-17 06:10:16 +02:00
parent a49e7c16e5
commit d209923433
1 changed files with 4 additions and 2 deletions

View File

@ -394,8 +394,10 @@ final class PixmapRecorder {
Returns:
The status code provided by the FFmpeg program.
+/
int close()
in (this.isOpen) {
int close() {
if (!this.isOpen) {
return;
}
_input.writeEnd.flush();
_input.writeEnd.close();