This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository efl.

View the commit online.

commit faf27c8b46de7b266dd89d6e2e65507061225eb1
Author: Vincent Torri <vto...@outlook.fr>
AuthorDate: Mon May 1 18:12:28 2023 +0200

    Evas: heif module is dlopen'ed
    
    The reason is that for newer versions, libheif should be initialized
    with heif_init(). This way, we call this function if the symbol exists.
---
 src/modules/evas/image_loaders/heif/evas_image_load_heif.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/modules/evas/image_loaders/heif/evas_image_load_heif.c b/src/modules/evas/image_loaders/heif/evas_image_load_heif.c
index 59482cb0a3..e5e2234aee 100644
--- a/src/modules/evas/image_loaders/heif/evas_image_load_heif.c
+++ b/src/modules/evas/image_loaders/heif/evas_image_load_heif.c
@@ -454,8 +454,7 @@ module_open(Evas_Module *em)
 
    if (heif_init_f)
      {
-       heif_init_f(NULL);
-       printf("HEIF !!!\n");
+        heif_init_f(NULL);
      }
 
    return 1;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to