diff options
author | James Almer <jamrial@gmail.com> | 2024-09-27 15:15:05 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-09-30 14:37:27 -0300 |
commit | 76eb3e5ff3a35eff01dd71aca82efcda50c4441f (patch) | |
tree | a369142df4bd2734a4fa6590acf59d81156bf44a /libavformat/isom.h | |
parent | 50d1b89fa0d393bb019d984e989bff1b6fb81f39 (diff) | |
download | ffmpeg-76eb3e5ff3a35eff01dd71aca82efcda50c4441f.tar.gz |
avformat/mov: get heif image rotation from irot box
Based on a patch by Hacene Bouaroua.
Fixes ticket #11171.
Co-authored-by: Hacene Bouaroua <hbouaroua@freebox.fr>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/isom.h')
-rw-r--r-- | libavformat/isom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 4723397048..204addbab2 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -283,6 +283,7 @@ typedef struct HEIFItem { int64_t extent_offset; int width; int height; + int rotation; int type; int is_idat_relative; } HEIFItem; |