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

Git pushed a commit to branch master
in repository ffmpeg.

commit 3b4281e919cf2665a454158e0248eb0635087850
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Wed Feb 11 18:15:39 2026 +0100
Commit:     Jun Zhao <[email protected]>
CommitDate: Thu Feb 12 00:56:21 2026 +0000

    avcodec/hevc/hevcdec: skip logging 'Skipping NAL unit 63'
    
    We know that this is Dolby Vision Enhancement Layer and while it's not
    handled, we can just reduce log spam for this, as it's if fact
    recognized.
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 libavcodec/hevc/hevcdec.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/hevc/hevcdec.c b/libavcodec/hevc/hevcdec.c
index 531d1c26f3..1d989e18ab 100644
--- a/libavcodec/hevc/hevcdec.c
+++ b/libavcodec/hevc/hevcdec.c
@@ -3665,7 +3665,8 @@ static int decode_nal_unit(HEVCContext *s, unsigned 
nal_idx)
     case HEVC_NAL_EOB_NUT:
     case HEVC_NAL_AUD:
     case HEVC_NAL_FD_NUT:
-    case HEVC_NAL_UNSPEC62:
+    case HEVC_NAL_UNSPEC62: // Dolby Vision RPU
+    case HEVC_NAL_UNSPEC63: // Dolby Vision EL
         break;
     default:
         av_log(s->avctx, AV_LOG_INFO,

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

Reply via email to