mirror of
https://github.com/Genymobile/scrcpy
synced 2025-08-31 06:15:25 +00:00
Do not call codec.stop() on exception
On exception, the codec is not in a state were .stop() can be called.
This commit is contained in:
@@ -71,8 +71,9 @@ public class ScreenEncoder implements Device.RotationListener {
|
||||
codec.start();
|
||||
try {
|
||||
alive = encode(codec, fd);
|
||||
} finally {
|
||||
// do not call stop() on exception, it would trigger an IllegalStateException
|
||||
codec.stop();
|
||||
} finally {
|
||||
destroyDisplay(display);
|
||||
codec.release();
|
||||
surface.release();
|
||||
|
Reference in New Issue
Block a user