evas image loaders - silence noisy warnings that are just not needed

several loaders make too much noise when a file fails to load - almost
all of this is because the file isnt actually an image format file at
all, and an ap is just asking evas to try do a load to see if it is a
loadable image at all. this results in noisy strerr output that simply
shouldnt be there. so silence for loaders. @fix
This commit is contained in:
Carsten Haitzler 2014-08-15 12:45:01 +09:00
parent 2098e8c856
commit 43a932ab3c
3 changed files with 21 additions and 22 deletions

View File

@ -157,8 +157,7 @@ _dword_read(const char **m)
return val;
}
#define FAIL() do { fprintf(stderr, "DDS: ERROR at %s:%d\n", \
__FUNCTION__, __LINE__); goto on_error; } while (0)
#define FAIL() do { /*fprintf(stderr, "DDS: ERROR at %s:%d\n", __FUNCTION__, __LINE__);*/ goto on_error; } while (0)
static Eina_Bool
evas_image_load_file_head_dds(void *loader_data,

View File

@ -37,21 +37,21 @@ struct _Evas_Loader_Internal
};
static void
_jp2k_error_cb(const char *msg, void *data EINA_UNUSED)
_jp2k_error_cb(const char *msg EINA_UNUSED, void *data EINA_UNUSED)
{
ERR("OpenJPEG internal error: '%s'.", msg);
// ERR("OpenJPEG internal error: '%s'.", msg);
}
static void
_jp2k_warning_cb(const char *msg, void *data EINA_UNUSED)
_jp2k_warning_cb(const char *msg EINA_UNUSED, void *data EINA_UNUSED)
{
WRN("OpenJPEG internal warning: '%s'.", msg);
// WRN("OpenJPEG internal warning: '%s'.", msg);
}
static void
_jp2k_info_cb(const char *msg, void *data EINA_UNUSED)
_jp2k_info_cb(const char *msg EINA_UNUSED, void *data EINA_UNUSED)
{
INF("OpenJPEG internal information: '%s'.", msg);
// INF("OpenJPEG internal information: '%s'.", msg);
}
static Eina_Bool

View File

@ -168,7 +168,7 @@ evas_image_load_file_xpm(Eina_File *f, Evas_Image_Property *prop, void *pixels,
*error = EVAS_LOAD_ERROR_CORRUPT_FILE;
if (length < 9)
{
ERR("XPM ERROR: file size, %zd, is to small", length);
// ERR("XPM ERROR: file size, %zd, is to small", length);
goto on_error;
}
@ -235,7 +235,7 @@ evas_image_load_file_xpm(Eina_File *f, Evas_Image_Property *prop, void *pixels,
/* Header */
if (sscanf(line, "%i %i %i %i", &w, &h, &ncolors, &cpp) != 4)
{
ERR("XPM ERROR: XPM file malformed header");
// ERR("XPM ERROR: XPM file malformed header");
*error = EVAS_LOAD_ERROR_CORRUPT_FILE;
goto on_error;
}