40 lines
694 B
C++
40 lines
694 B
C++
#include <vips/vips.h>
|
|
|
|
extern "C" int
|
|
LLVMFuzzerInitialize( int *argc, char ***argv )
|
|
{
|
|
vips_concurrency_set( 1 );
|
|
return( 0 );
|
|
}
|
|
|
|
extern "C" int
|
|
LLVMFuzzerTestOneInput( const guint8 *data, size_t size )
|
|
{
|
|
VipsImage *image, *out;
|
|
double d;
|
|
|
|
if( !(image = vips_image_new_from_buffer( data, size, "", NULL )) )
|
|
return( 0 );
|
|
|
|
/* Skip big images. They are likely to timeout.
|
|
*/
|
|
if( image->Xsize > 1024 ||
|
|
image->Ysize > 1024 ||
|
|
image->Bands > 10 ) {
|
|
g_object_unref( image );
|
|
return( 0 );
|
|
}
|
|
|
|
if( vips_sharpen( image, &out, NULL ) ) {
|
|
g_object_unref( image );
|
|
return( 0 );
|
|
}
|
|
|
|
vips_avg( out, &d, NULL );
|
|
|
|
g_object_unref( out );
|
|
g_object_unref( image );
|
|
|
|
return( 0 );
|
|
}
|