This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 818e5d965b avformat/mov: Treat missing cdsc as nonfatal
818e5d965b is described below

commit 818e5d965be955be8842ee3a4cdd7b43ab81661d
Author:     Syed AbuTalib <[email protected]>
AuthorDate: Thu Sep 3 20:57:47 2026 +0000
Commit:     Syed AbuTalib <[email protected]>
CommitDate: Thu Sep 3 20:57:47 2026 +0000

    avformat/mov: Treat missing cdsc as nonfatal
    
    Downgrade the log level to a warning and continue demuxing instead of
    returning an error.
    
    Signed-off-by: Syed AbuTalib <[email protected]>
---
 libavformat/mov.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index f53ce693f8..1255de95e8 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -11381,10 +11381,7 @@ static int 
mov_parse_cdsc_and_rndr_streams(AVFormatContext *s)
 
             st_ref = mov_find_reference_track(s, st, tag->id, tag->nb_id, 0);
             if (!st_ref) {
-                int loglevel = (s->error_recognition & AV_EF_EXPLODE) ? 
AV_LOG_ERROR : AV_LOG_WARNING;
-                av_log(s, loglevel, "Failed to find referenced stream\n");
-                if (s->error_recognition & AV_EF_EXPLODE)
-                    return AVERROR_INVALIDDATA;
+                av_log(s, AV_LOG_WARNING, "Failed to find referenced 
stream\n");
                 continue;
             }
 

-- 
To stop receiving notification emails like this one, please contact
[email protected].
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to