This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
mirrored from https://chromium.googlesource.com/webm/webp-wic-codec
webmproject/webp-wic-codec
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
main
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Windows Imaging Component wrapper around libwebp for WebP support. Currently, only decoding is supported, but that allows to e.g., see the files in Windows PhotoViewer. Directories: example - an example webp file. setup - WiX scripts to create MSI packages and a wrapper setup. src - source code of the WIC interfaces. test - tests comparing the WebP codec with the builtin Jpeg codec. Directories created after a build bin - place where generated DLLs, MSIs etc will be put. ipch - precompiled headers by Visual Studio. obj - place where generated object files etc, will be put. The solution/project were created in Visual Studio 2010, I don't know if they work with older versions. It requires Windows SDK 7.1 - the projects its compiler, as the compiler in Visual C++ Express doesn't support x64. The tests loads the decoder using CoCreateInstance - i.e. they choose the DLL that is currently registered in the system registry - they don't automatically choose the DLL from the active configuration. To register a DLL. Run from an elevated command prompt (elevated command prompt = choose command prompt icon, right click and choose 'Run As Administrator') e.g.: regsvr32 bin\x64\Debug\WebpWICCodec.dll Note that the registry has different branches for 32-bit and 64-bit COM object registrations, thus, you register independently a win32 and x64 DLL. On the other hand registering e.g. a release DLL when a debug DLL for the same architecture was previously registered should overwrite the previous registration. If you want to unregister a DLL, run e.g.: regsvr32 /u bin\x64\Debug\WebpWICCodec.dll The tests were written on Windows 7. Some of them may fail e.g., on Vista. The setup consists of a x86 MSI package (with the x64 DLL), x64 MSI package (with both DLLs) and a wrapper EXE that chooses the correct one. The MSIs are created with WiX 3.0. Typing 'msbuild' should create both packages and the wrapper.
About
Mirror only. Please do not send pull requests.
Resources
Stars
Watchers
Forks
Packages 0
No packages published