}
if (h->current_metadata->depth > 8) {
h->current_metadata->depth = 8;
- kds_s2000w_convert_jpg_to_pnm_With_depth(&image, &pnm_image, h->current_metadata->depth);
+ kds_s2000w_convert_jpg_to_pnm_with_depth(&image, &pnm_image, h->current_metadata->depth);
} else {
kds_s2000w_convert_jpg_to_pnm(&image, &pnm_image);
}
void kds_s2000w_convert_jpg_to_pnm(blobdata* in, blobdata* out)
{
debug_printf(ALL, "kds_s2000w_convert_jpg_to_pnm");
- kds_s2000w_convert_jpg_to_pnm_With_depth(in, out, -1);
+ kds_s2000w_convert_jpg_to_pnm_with_depth(in, out, -1);
}
-void kds_s2000w_convert_jpg_to_pnm_With_depth(blobdata* in, blobdata* out, int depth)
+void kds_s2000w_convert_jpg_to_pnm_with_depth(blobdata* in, blobdata* out, int depth)
{
debug_printf(ALL, "kds_s2000w_convert_jpg_to_pnm_With_depth");
ExceptionInfo* exception = NULL;
void kds_s2000w_convert_terminate();
void kds_s2000w_convert_jpg_to_pnm(blobdata* in, blobdata* out);
-void kds_s2000w_convert_jpg_to_pnm_With_depth(blobdata* in, blobdata* out, int depth);
+void kds_s2000w_convert_jpg_to_pnm_with_depth(blobdata* in, blobdata* out, int depth);
#endif
\ No newline at end of file
read_file(argv[1], &input);
kds_s2000w_convert_init();
- kds_s2000w_convert_jpg_to_pnm_With_depth(&input, &output, 8);
+ kds_s2000w_convert_jpg_to_pnm_with_depth(&input, &output, 8);
kds_s2000w_convert_terminate();
printf_header_bytes((const char*) output.data);