Is there somewhere a (complete or partial) implementation of a
(lossless) encoder and decoder that could be compatible with weekly
(or forkable) ?
http://code.google.com/p/vp8-go/ has a WebP decoder, but only for the
lossy form. I don't think the bitstream for lossless WebP has been
finalized.
Doing an encoder is also is on my TODO list, but I haven't had much
spare time lately.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "golang-nuts" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/golang-nuts/gZ-PCUGw7Rk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to golang-nuts...@googlegroups.com.
If you are using a recent version of OSX, you probably don't actually have gcc. There is a gcc program installed with the xcode-tools but it just secretly runs clang.I was able to fix it by modifying the libwebp/include/webp.h file to have an extra include for stdlib.h (after stdint.h) since it's needed for the definition of size_t.
Honestly though, this package needs fixing, since it only builds at tip, not on any earlier version, including the current release version, and wasn't tested very well.