diff options
author | Seungbae Shin <seungbae.shin@samsung.com> | 2023-06-28 19:43:20 +0900 |
---|---|---|
committer | jiyong.min <jiyong.min@samsung.com> | 2023-07-03 07:57:45 +0900 |
commit | 7217932e07c7b6a7d450d7292ebc8863230c59f8 (patch) | |
tree | ccbd49e0acf9df6e7b0e6965006c00222f370a54 | |
parent | 9b55f21eddeb4cfbfba40b3c48415e22e9c0b5ac (diff) | |
download | libheif-tizen_7.0.tar.gz libheif-tizen_7.0.tar.bz2 libheif-tizen_7.0.zip |
Fix build error on GCC 13.1.0accepted/tizen/7.0/unified/20230704.165319tizen_7.0accepted/tizen_7.0_unified
error: conflicting types for 'heif_itemtable_get_image_mirror_mode' due to enum/integer mismatch;
have 'int(void *, heif_mirror_mode_e *)' [-Werror=enum-int-mismatch]
Change-Id: Idbde4788d1e584366e6f2c8f159cb22d827877ef
(cherry picked from commit 403d03003ec12cf499c72417031f7d7c6b9aa4f9)
-rw-r--r-- | include/heif_itemtable.h | 2 | ||||
-rw-r--r-- | packaging/libheif.spec | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/heif_itemtable.h b/include/heif_itemtable.h index cdb55da..d1d1491 100644 --- a/include/heif_itemtable.h +++ b/include/heif_itemtable.h @@ -43,7 +43,7 @@ int heif_itemtable_get_image_item(heif_itemtable_h handle, unsigned int item_id, int heif_itemtable_get_thumb_item(heif_itemtable_h handle, heif_image_item_h *thumb_item); int heif_itemtable_get_image_resolution(heif_image_item_h image_item, unsigned int *width, unsigned int *height); int heif_itemtable_get_image_orientation(heif_image_item_h image_item, unsigned int *orientation); -int heif_itemtable_get_image_mirror_mode(heif_image_item_h image_item, unsigned int *axis); +int heif_itemtable_get_image_mirror_mode(heif_image_item_h image_item, heif_mirror_mode_e *mirror); int heif_itemtable_get_grid_info(heif_image_item_h image_item, unsigned int *row, unsigned int *column, GSList **img_refs); int heif_itemtable_get_coded_data(heif_itemtable_h handle, heif_image_item_h image_item, heif_buffer_t **coded_data); int heif_itemtable_get_exif(heif_itemtable_h handle, heif_image_item_h image_item, void **exif, size_t *exif_size); diff --git a/packaging/libheif.spec b/packaging/libheif.spec index 4e1786d..f2faf2a 100644 --- a/packaging/libheif.spec +++ b/packaging/libheif.spec @@ -1,6 +1,6 @@ Name: libheif Summary: Multimedia Framework Library for HEIF(ISO/IEC 23008-12) image -Version: 0.0.9 +Version: 0.0.10 Release: 0 Group: Multimedia/Libraries License: Apache-2.0 |