diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2013-09-28 14:28:41 +0200 |
---|---|---|
committer | Cedric Bail <cedric.bail@samsung.com> | 2013-10-01 16:38:44 +0900 |
commit | 3b8b2ac66c10be49a85ec2dad2d54082fe47742f (patch) | |
tree | 5eb31d7c7cdb754c1da5d5efa882ab7e15d5d315 /src/lib/evas/common | |
parent | 83eaf14f32e3fb804b97906af6e0af70303bf24b (diff) |
evas: add JPEG 2000 loader.
This add finally support for JPEG 2000, but be aware that libopenjpeg
is very badly managed. There is currently only version 1.5.x that does
provide the right files, is usable by a third party and portable. You
can seriously forget any other version.
Diffstat (limited to 'src/lib/evas/common')
-rw-r--r-- | src/lib/evas/common/evas_image_load.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/evas/common/evas_image_load.c b/src/lib/evas/common/evas_image_load.c index afca101deb..c945442be5 100644 --- a/src/lib/evas/common/evas_image_load.c +++ b/src/lib/evas/common/evas_image_load.c | |||
@@ -29,6 +29,10 @@ static const struct ext_loader_s loaders[] = | |||
29 | MATCHING(".jpg", "jpeg"), | 29 | MATCHING(".jpg", "jpeg"), |
30 | MATCHING(".jpeg", "jpeg"), | 30 | MATCHING(".jpeg", "jpeg"), |
31 | MATCHING(".jfif", "jpeg"), | 31 | MATCHING(".jfif", "jpeg"), |
32 | MATCHING(".j2k", "jp2k"), | ||
33 | MATCHING(".jp2", "jp2k"), | ||
34 | MATCHING(".jpx", "jp2k"), | ||
35 | MATCHING(".jpf", "jp2k"), | ||
32 | MATCHING(".eet", "eet"), | 36 | MATCHING(".eet", "eet"), |
33 | MATCHING(".edj", "eet"), | 37 | MATCHING(".edj", "eet"), |
34 | MATCHING(".eap", "eet"), | 38 | MATCHING(".eap", "eet"), |