This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.0 in repository ffmpeg.
commit 85a32c764bb9ae664d0ce391c3d1c75d70f65002 Author: James Almer <[email protected]> AuthorDate: Sun Nov 23 17:01:39 2025 -0300 Commit: James Almer <[email protected]> CommitDate: Thu Mar 5 23:10:37 2026 -0300 avformat/mov: reindent after the previous change Signed-off-by: James Almer <[email protected]> (cherry picked from commit fd4e86be9ec88ffbe4deb12339ca42575d69ca68) --- libavformat/mov.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index b724c310ef..8dd72b7c2a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2681,12 +2681,12 @@ static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb, avio_skip(pb, 2); /* reserved */ avio_skip(pb, 12); /* pre_defined */ } else { - avio_rb16(pb); /* version */ - avio_rb16(pb); /* revision level */ - id = avio_rl32(pb); /* vendor */ - av_dict_set(&st->metadata, "vendor_id", av_fourcc2str(id), 0); - avio_rb32(pb); /* temporal quality */ - avio_rb32(pb); /* spatial quality */ + avio_rb16(pb); /* version */ + avio_rb16(pb); /* revision level */ + id = avio_rl32(pb); /* vendor */ + av_dict_set(&st->metadata, "vendor_id", av_fourcc2str(id), 0); + avio_rb32(pb); /* temporal quality */ + avio_rb32(pb); /* spatial quality */ } st->codecpar->width = avio_rb16(pb); /* width */ @@ -2740,9 +2740,9 @@ static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb, if (c->isom) avio_skip(pb, 6); /* reserved */ else { - avio_rb16(pb); /* revision level */ - id = avio_rl32(pb); /* vendor */ - av_dict_set(&st->metadata, "vendor_id", av_fourcc2str(id), 0); + avio_rb16(pb); /* revision level */ + id = avio_rl32(pb); /* vendor */ + av_dict_set(&st->metadata, "vendor_id", av_fourcc2str(id), 0); } channel_count = avio_rb16(pb); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
