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 10acab8df5 avcodec/hevc/hevcdec: report unparsed unknown NALUs types 
at verbose level
10acab8df5 is described below

commit 10acab8df56fc33027b4cf36e2d42dc9d7c81d54
Author:     James Almer <[email protected]>
AuthorDate: Wed Feb 11 13:58:05 2026 -0300
Commit:     James Almer <[email protected]>
CommitDate: Wed Feb 11 21:57:20 2026 -0300

    avcodec/hevc/hevcdec: report unparsed unknown NALUs types at verbose level
    
    Reduces spamming at default log level.
    
    Signed-off-by: James Almer <[email protected]>
---
 libavcodec/hevc/hevcdec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/hevc/hevcdec.c b/libavcodec/hevc/hevcdec.c
index 1d989e18ab..3becf6a2b0 100644
--- a/libavcodec/hevc/hevcdec.c
+++ b/libavcodec/hevc/hevcdec.c
@@ -3669,7 +3669,7 @@ static int decode_nal_unit(HEVCContext *s, unsigned 
nal_idx)
     case HEVC_NAL_UNSPEC63: // Dolby Vision EL
         break;
     default:
-        av_log(s->avctx, AV_LOG_INFO,
+        av_log(s->avctx, AV_LOG_VERBOSE,
                "Skipping NAL unit %d\n", s->nal_unit_type);
     }
 

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

Reply via email to