36#include <config_auto.h>
39#include "allheaders.h"
45PIX * pixReadStreamWebP(FILE *fp)
47 return (
PIX * )ERROR_PTR(
"function not present", __func__, NULL);
52PIX * pixReadMemWebP(
const l_uint8 *filedata,
size_t filesize)
54 return (
PIX * )ERROR_PTR(
"function not present", __func__, NULL);
59l_ok readHeaderWebP(
const char *filename, l_int32 *pw, l_int32 *ph,
62 return ERROR_INT(
"function not present", __func__, 1);
67l_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);
75l_ok pixWriteWebP(
const char *filename,
PIX *pixs, l_int32 quality,
78 return ERROR_INT(
"function not present", __func__, 1);
83l_ok pixWriteStreamWebP(FILE *fp,
PIX *pixs, l_int32 quality,
86 return ERROR_INT(
"function not present", __func__, 1);
91l_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);