This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit b3996ee578f5170f2db1e5906fd8e1a32f41e029 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Fri Mar 13 15:48:30 2026 +0100 Commit: James Almer <[email protected]> CommitDate: Fri Mar 13 16:09:40 2026 +0000 avcodec/lcevctab: Use smaller types Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/lcevctab.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libavcodec/lcevctab.h b/libavcodec/lcevctab.h index 89361cebe9..3bbca2e52b 100644 --- a/libavcodec/lcevctab.h +++ b/libavcodec/lcevctab.h @@ -19,11 +19,13 @@ #ifndef AVCODEC_LCEVCTAB_H #define AVCODEC_LCEVCTAB_H +#include <stdint.h> + #include "libavutil/attributes_internal.h" EXTERN const struct FFLCEVCDim { - int width; - int height; + uint16_t width; + uint16_t height; } ff_lcevc_resolution_type[63]; #endif /* AVCODEC_LCEVCTAB_H */ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
