mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-15 13:29:54 +02:00
Compare commits
2 Commits
306335198d
...
0.3.0
Author | SHA1 | Date | |
---|---|---|---|
3b44c5eb71 | |||
c28544a420 |
@ -606,6 +606,10 @@ void WebPIDelete(WebPIDecoder* idec) {
|
|||||||
if (idec == NULL) return;
|
if (idec == NULL) return;
|
||||||
if (idec->dec_ != NULL) {
|
if (idec->dec_ != NULL) {
|
||||||
if (!idec->is_lossless_) {
|
if (!idec->is_lossless_) {
|
||||||
|
if (idec->state_ == STATE_VP8_DATA) {
|
||||||
|
// Synchronize the thread, clean-up and check for errors.
|
||||||
|
VP8ExitCritical(idec->dec_, &idec->io_);
|
||||||
|
}
|
||||||
VP8Delete(idec->dec_);
|
VP8Delete(idec->dec_);
|
||||||
} else {
|
} else {
|
||||||
VP8LDelete(idec->dec_);
|
VP8LDelete(idec->dec_);
|
||||||
|
BIN
swig/libwebp.jar
BIN
swig/libwebp.jar
Binary file not shown.
Reference in New Issue
Block a user