mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-23 03:05:26 +00:00
Fix crash when sending video (due to IllegalStateException).
This commit is contained in:
committed by
Greyson Parrelli
parent
ed23c3fe7c
commit
b100262c6a
@@ -109,6 +109,8 @@ final class VideoThumbnailsExtractor {
|
||||
decoder.stop();
|
||||
} catch (MediaCodec.CodecException codecException) {
|
||||
Log.w(TAG, "Decoder stop failed: " + codecException.getDiagnosticInfo(), codecException);
|
||||
} catch (IllegalStateException ise) {
|
||||
Log.w(TAG, "Decoder stop failed", ise);
|
||||
}
|
||||
decoder.release();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user