This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 600a8a5a9c910dd3e88694fd8de60e61643348fb Author: Leo Izen <[email protected]> AuthorDate: Sat Apr 4 10:53:11 2026 -0400 Commit: Leo Izen <[email protected]> CommitDate: Fri May 1 07:40:18 2026 -0400 avutil/frame.h: fix AV_EXIF_SIDE_DATA declaration This commit re-aligns the declaration by removing extra whitespace and fixes the comment above to have the correct acronym. It also documents what the four magic bytes indicate. Signed-off-by: Leo Izen <[email protected]> --- libavutil/frame.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libavutil/frame.h b/libavutil/frame.h index 02a54303bc..b07f7ba263 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -256,10 +256,11 @@ enum AVFrameSideDataType { AV_FRAME_DATA_3D_REFERENCE_DISPLAYS, /** - * Extensible image file format metadata. The payload is a buffer containing - * EXIF metadata, starting with either 49 49 2a 00, or 4d 4d 00 2a. + * Exchangeable image file format metadata. The payload is a buffer containing + * EXIF metadata, starting with either 49 49 2a 00, or 4d 4d 00 2a. These four + * bytes signify the endianness, and occur as the first part of the TIFF header. */ - AV_FRAME_DATA_EXIF, + AV_FRAME_DATA_EXIF, /** * HDR dynamic metadata associated with a video frame. The payload is _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
