diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2020-07-11 11:34:01 +0100 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-07-14 10:09:22 +0100 |
commit | dd23a6c84aee249aa5316b48af6956072233bb97 (patch) | |
tree | e35eb88062b1dec24dc9d9cfe3f38f51a5fc7086 /src/lib/evas/file | |
parent | 6cc6aacbaccd4b6e876ae9b54d93cd6fe73c0fe4 (diff) |
Evas: add avif evas loader
Summary: Add AV1 image file loader to Evas
Test Plan: test executable with avif files found in libavif project
Reviewers: raster
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D12051
Diffstat (limited to 'src/lib/evas/file')
-rw-r--r-- | src/lib/evas/file/evas_module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/evas/file/evas_module.c b/src/lib/evas/file/evas_module.c index a1e8b623af..b99118698e 100644 --- a/src/lib/evas/file/evas_module.c +++ b/src/lib/evas/file/evas_module.c | |||
@@ -196,6 +196,7 @@ EVAS_EINA_STATIC_MODULE_DEFINE(vg_loader, json); | |||
196 | #endif | 196 | #endif |
197 | 197 | ||
198 | #if !EVAS_MODULE_NO_IMAGE_LOADERS | 198 | #if !EVAS_MODULE_NO_IMAGE_LOADERS |
199 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, avif); | ||
199 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, bmp); | 200 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, bmp); |
200 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, dds); | 201 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, dds); |
201 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, eet); | 202 | EVAS_EINA_STATIC_MODULE_DEFINE(image_loader, eet); |
@@ -287,6 +288,9 @@ static const struct { | |||
287 | #endif | 288 | #endif |
288 | #endif | 289 | #endif |
289 | #if !EVAS_MODULE_NO_IMAGE_LOADERS | 290 | #if !EVAS_MODULE_NO_IMAGE_LOADERS |
291 | #ifdef EVAS_STATIC_BUILD_AVIF | ||
292 | EVAS_EINA_STATIC_MODULE_USE(image_loader, avif), | ||
293 | #endif | ||
290 | #ifdef EVAS_STATIC_BUILD_BMP | 294 | #ifdef EVAS_STATIC_BUILD_BMP |
291 | EVAS_EINA_STATIC_MODULE_USE(image_loader, bmp), | 295 | EVAS_EINA_STATIC_MODULE_USE(image_loader, bmp), |
292 | #endif | 296 | #endif |