mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 12:28:26 +01:00
9cf9841b5e
Define macros in examples/unicode.h to use Unicode argv on Windows. Keep char everywhere on Unix since it handles UTF-8 without any change. Impact: - All fopen () and SHCreateStreamOnFile(), - All fprintf() printing file paths, - All strcmp() used with "-", - File path parsing, - Gif reading. Concerned executables from examples/ and extras/: anim_diff, anim_dump, vwebp, vwebp_sdl, cwebp, dwebp, gif2webp, img2webp, webpmux, webpinfo, webp_quality, get_disto When compiled on Windows with Unicode enabled, webpmux and img2webp will not work when used with an argument file and will print "Reading arguments from a file is a feature unavailable with Unicode binaries." BUG=webp:398 Change-Id: Ic55d222a3ce1a715f9c4cce57ecbe2705d5ce317
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
// Simple tool to roughly evaluate the quality encoding of a webp bitstream
|
|
//
|
|
// Result is a *rough* estimation of the quality. You should just consider
|
|
// the bucket it's in (q > 80? > 50? > 20?) and not take it for face value.
|
|
/*
|
|
gcc -o webp_quality webp_quality.c -O3 -I../ -L. -L../imageio \
|
|
-limageio_util -lwebpextras -lwebp -lm -lpthread
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "extras/extras.h"
|
|
#include "imageio/imageio_util.h"
|
|
#include "../examples/unicode.h"
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
int c;
|
|
int quiet = 0;
|
|
int ok = 1;
|
|
|
|
INIT_WARGV(argc, argv);
|
|
|
|
for (c = 1; ok && c < argc; ++c) {
|
|
if (!strcmp(argv[c], "-quiet")) {
|
|
quiet = 1;
|
|
} else if (!strcmp(argv[c], "-help") || !strcmp(argv[c], "-h")) {
|
|
printf("webp_quality [-h][-quiet] webp_files...\n");
|
|
FREE_WARGV_AND_RETURN(0);
|
|
} else {
|
|
const char* const filename = (const char*)GET_WARGV(argv, c);
|
|
const uint8_t* data = NULL;
|
|
size_t data_size = 0;
|
|
int q;
|
|
ok = ImgIoUtilReadFile(filename, &data, &data_size);
|
|
if (!ok) break;
|
|
q = VP8EstimateQuality(data, data_size);
|
|
if (!quiet) WPRINTF("[%s] ", (const W_CHAR*)filename);
|
|
if (q < 0) {
|
|
fprintf(stderr, "Not a WebP file, or not a lossy WebP file.\n");
|
|
ok = 0;
|
|
} else {
|
|
if (!quiet) {
|
|
printf("Estimated quality factor: %d\n", q);
|
|
} else {
|
|
printf("%d\n", q); // just print the number
|
|
}
|
|
}
|
|
free((void*)data);
|
|
}
|
|
}
|
|
FREE_WARGV_AND_RETURN(ok ? 0 : 1);
|
|
}
|