This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 1e440f274550685d6065da03dde7d4e86295a3a6 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 21 15:43:34 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Mar 10 13:52:18 2026 +0100 avformat/dovi_isom: Fix shadowing Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/dovi_isom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/dovi_isom.c b/libavformat/dovi_isom.c index 269374cff9..952bd56acf 100644 --- a/libavformat/dovi_isom.c +++ b/libavformat/dovi_isom.c @@ -57,9 +57,9 @@ int ff_isom_parse_dvcc_dvvc(void *logctx, AVStream *st, // Has enough remaining data if (size >= 5) { - uint8_t buf = *buf_ptr++; - dovi->dv_bl_signal_compatibility_id = (buf >> 4) & 0x0f; // 4 bits - dovi->dv_md_compression = (buf >> 2) & 0x03; // 2 bits + uint8_t byte = *buf_ptr++; + dovi->dv_bl_signal_compatibility_id = (byte >> 4) & 0x0f; // 4 bits + dovi->dv_md_compression = (byte >> 2) & 0x03; // 2 bits } else { // 0 stands for None // Dolby Vision V1.2.93 profiles and levels _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
