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

Git pushed a commit to branch master
in repository ffmpeg.

commit e1e2c8553788cd5be0946ab0a9e26deb24f2e20a
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Tue Mar 24 17:50:36 2026 +0100
Commit:     James Almer <[email protected]>
CommitDate: Tue Mar 24 23:13:00 2026 +0000

    avfilter/framepool: Use av_unreachable() for unreachable code
    
    Instead of av_assert0(0).
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavfilter/framepool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/framepool.c b/libavfilter/framepool.c
index 01ff89d7ce..91101006df 100644
--- a/libavfilter/framepool.c
+++ b/libavfilter/framepool.c
@@ -269,7 +269,7 @@ AVFrame *ff_frame_pool_get(FFFramePool *pool)
 
         break;
     default:
-        av_assert0(0);
+        av_unreachable("only audio and video frame pools exist");
     }
 
     return frame;

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

Reply via email to