evas - loaders - avif, heif - allow threaded loading

i see no good reason to not allow these loaders to run in threads.
they are isolated and i don't see a reason for the libs called to not
be threadsafe.
This commit is contained in:
Carsten Haitzler 2021-12-02 12:22:54 +00:00
parent 71818d93f8
commit 2fb5530be7
2 changed files with 2 additions and 2 deletions

View File

@ -355,7 +355,7 @@ static Evas_Image_Load_Func evas_image_load_avif_func =
NULL,
evas_image_load_file_data_avif,
evas_image_load_frame_duration_avif,
EINA_FALSE,
EINA_TRUE,
EINA_FALSE
};

View File

@ -322,7 +322,7 @@ static const Evas_Image_Load_Func evas_image_load_heif_func = {
NULL,
evas_image_load_file_data_heif,
NULL,
EINA_FALSE,
EINA_TRUE,
EINA_FALSE
};