diff options
author | thierry1970 <thierry@ordissimo.com> | 2021-02-06 15:45:42 +0000 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2021-02-06 18:58:04 +0000 |
commit | 97f95e736269fcdf5511077135ede9b37dd06854 (patch) | |
tree | 9f8f74e8bb9b6cd2341210ea5becd9c141a3c520 /data | |
parent | ec4ef6911591b0ce47616438dfd34626d9302537 (diff) |
Added the heif loader
Summary: that supports images : *.heif, *hiec and *.avif I have disabled *.avif images, there is already a loader.
Reviewers: stefan_schmidt, raster
Subscribers: raster, vtorri, cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D12135
Diffstat (limited to 'data')
-rw-r--r-- | data/evas/evas.xml | 13 | ||||
-rw-r--r-- | data/evas/meson.build | 4 | ||||
-rw-r--r-- | data/meson.build | 3 |
3 files changed, 19 insertions, 1 deletions
diff --git a/data/evas/evas.xml b/data/evas/evas.xml new file mode 100644 index 0000000000..7764c0c05e --- /dev/null +++ b/data/evas/evas.xml | |||
@@ -0,0 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> | ||
3 | >------<mime-type type="image/heif"> | ||
4 | >------>-------<comment>HEIF image file</comment> | ||
5 | >------>-------<glob pattern="*.heif"/> | ||
6 | >------>-------<glob pattern="*.heic"/> | ||
7 | >------</mime-type> | ||
8 | >------<mime-type type="image/avif"> | ||
9 | >------>-------<comment>AVIF image file</comment> | ||
10 | >------>--------<glob pattern="*.avif"/> | ||
11 | >------</mime-type> | ||
12 | </mime-info> | ||
13 | |||
diff --git a/data/evas/meson.build b/data/evas/meson.build new file mode 100644 index 0000000000..ddcc57dcad --- /dev/null +++ b/data/evas/meson.build | |||
@@ -0,0 +1,4 @@ | |||
1 | install_data(files('evas.xml'), | ||
2 | install_dir : join_paths(dir_data, 'mime', 'packages') | ||
3 | ) | ||
4 | |||
diff --git a/data/meson.build b/data/meson.build index 4e1f68d406..5944dad07c 100644 --- a/data/meson.build +++ b/data/meson.build | |||
@@ -1,4 +1,4 @@ | |||
1 | checkme_files = ['ecore', 'ecore_imf', 'ecore_x', 'eeze', 'efreet', 'elua', 'emotion', 'ethumb', 'ethumb_client', 'evas'] | 1 | checkme_files = ['ecore', 'ecore_imf', 'ecore_x', 'eeze', 'efreet', 'elua', 'emotion', 'ethumb', 'ethumb_client'] |
2 | foreach checkme : checkme_files | 2 | foreach checkme : checkme_files |
3 | install_data(join_paths(checkme, 'checkme'), | 3 | install_data(join_paths(checkme, 'checkme'), |
4 | install_dir : join_paths(dir_data, checkme) | 4 | install_dir : join_paths(dir_data, checkme) |
@@ -10,3 +10,4 @@ subdir('edje') | |||
10 | subdir('embryo') | 10 | subdir('embryo') |
11 | subdir(join_paths('ethumb', 'frames')) | 11 | subdir(join_paths('ethumb', 'frames')) |
12 | subdir('elementary') | 12 | subdir('elementary') |
13 | subdir('evas') | ||