Gitweb links:
...log
http://git.netsurf-browser.org/libnsgif.git/shortlog/bf7155c5495a6e9c118e4c97da15d0c295f16b3d
...commit
http://git.netsurf-browser.org/libnsgif.git/commit/bf7155c5495a6e9c118e4c97da15d0c295f16b3d
...tree
http://git.netsurf-browser.org/libnsgif.git/tree/bf7155c5495a6e9c118e4c97da15d0c295f16b3d
The branch, tlsa/lzw-optimise has been updated
via bf7155c5495a6e9c118e4c97da15d0c295f16b3d (commit)
from 4a91b95aaa8193b71e6a4c9347e6d5df7c551ec5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libnsgif.git/commit/?id=bf7155c5495a6e9c118e4c97da15d0c295f16b3d
commit bf7155c5495a6e9c118e4c97da15d0c295f16b3d
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
gif: Switch complex decoder over to continuous lzw API.
diff --git a/src/libnsgif.c b/src/libnsgif.c
index 3c49218..6d78dc2 100644
--- a/src/libnsgif.c
+++ b/src/libnsgif.c
@@ -681,7 +681,7 @@ gif__decode_complex(gif_animation *gif,
}
break;
}
- res = lzw_decode(gif->lzw_ctx,
+ res = lzw_decode_continuous(gif->lzw_ctx,
&uncompressed, &available);
}
-----------------------------------------------------------------------
Summary of changes:
src/libnsgif.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libnsgif.c b/src/libnsgif.c
index 3c49218..6d78dc2 100644
--- a/src/libnsgif.c
+++ b/src/libnsgif.c
@@ -681,7 +681,7 @@ gif__decode_complex(gif_animation *gif,
}
break;
}
- res = lzw_decode(gif->lzw_ctx,
+ res = lzw_decode_continuous(gif->lzw_ctx,
&uncompressed, &available);
}
--
NetSurf GIF Decoder
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]