gif: Switch complex decoder over to continuous lzw API.

This commit is contained in:
Michael Drake 2021-04-05 16:06:37 +01:00 committed by Michael Drake
parent 05fddf49e3
commit 020fc32108

View File

@ -676,7 +676,7 @@ gif__decode_complex(gif_animation *gif,
}
break;
}
res = lzw_decode(gif->lzw_ctx,
res = lzw_decode_continuous(gif->lzw_ctx,
&uncompressed, &available);
}