introduce -lossless option, protected by USE_LOSSLESS_ENCODER

Change-Id: Ic5707082fefd964b9bcab0c9f9aa276992c22b06
This commit is contained in:
Pascal Massimino 2012-04-24 10:59:08 +00:00 committed by James Zern
parent c6ac4dfbb4
commit 72920caa61

View File

@ -838,6 +838,11 @@ int main(int argc, const char *argv[]) {
}
} else if (!strcmp(argv[c], "-noalpha")) {
keep_alpha = 0;
#ifdef USE_LOSSLESS_ENCODER
} else if (!strcmp(argv[c], "-lossless")) {
config.lossless = 1;
picture.use_argb_input = 1;
#endif
} else if (!strcmp(argv[c], "-size") && c < argc - 1) {
config.target_size = strtol(argv[++c], NULL, 0);
} else if (!strcmp(argv[c], "-psnr") && c < argc - 1) {