36 #include <config_auto.h>
39 #include "allheaders.h"
45 PIX * pixReadStreamWebP(FILE *fp)
47 return (
PIX * )ERROR_PTR(
"function not present", __func__, NULL);
52 PIX * pixReadMemWebP(
const l_uint8 *filedata,
size_t filesize)
54 return (
PIX * )ERROR_PTR(
"function not present", __func__, NULL);
59 l_ok readHeaderWebP(
const char *filename, l_int32 *pw, l_int32 *ph,
62 return ERROR_INT(
"function not present", __func__, 1);
67 l_ok readHeaderMemWebP(
const l_uint8 *data,
size_t size,
68 l_int32 *pw, l_int32 *ph, l_int32 *pspp)
70 return ERROR_INT(
"function not present", __func__, 1);
75 l_ok pixWriteWebP(
const char *filename,
PIX *pixs, l_int32 quality,
78 return ERROR_INT(
"function not present", __func__, 1);
83 l_ok pixWriteStreamWebP(FILE *fp,
PIX *pixs, l_int32 quality,
86 return ERROR_INT(
"function not present", __func__, 1);
91 l_ok pixWriteMemWebP(l_uint8 **pencdata,
size_t *pencsize,
PIX *pixs,
92 l_int32 quality, l_int32 lossless)
94 return ERROR_INT(
"function not present", __func__, 1);