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 96bce29565 avformat/mov: fix error log for cdsc track references
96bce29565 is described below

commit 96bce2956546468bc1019fa772eae8820fe48c68
Author:     James Almer <[email protected]>
AuthorDate: Tue Jul 14 19:48:26 2026 -0300
Commit:     James Almer <[email protected]>
CommitDate: Tue Jul 14 19:48:26 2026 -0300

    avformat/mov: fix error log for cdsc track references
    
    Signed-off-by: James Almer <[email protected]>
---
 libavformat/mov.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 02a3dc97a7..2c95434b27 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -11154,7 +11154,7 @@ static int mov_parse_cdsc_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 referenced stream\n");
+            av_log(s, loglevel, "Failed to find referenced stream\n");
             if (s->error_recognition & AV_EF_EXPLODE)
                 return AVERROR_INVALIDDATA;
             continue;

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to