Re: [FFmpeg-devel] [PATCH] all: Replace assert by av_assert

2025-03-25 Thread Andreas Rheinhardt
Michael Niedermayer: > On Sun, Mar 23, 2025 at 06:01:01PM +0100, Andreas Rheinhardt wrote: >> Patch attached. >> >> - Andreas > >> libavcodec/aacpsy.c |7 --- >> libavcodec/encode.c |2 ++ >> libavcodec/h264_direct.c| 14 +++--- >> libavcodec/

Re: [FFmpeg-devel] [PATCH] all: Replace assert by av_assert

2025-03-25 Thread Michael Niedermayer
On Sun, Mar 23, 2025 at 06:01:01PM +0100, Andreas Rheinhardt wrote: > Patch attached. > > - Andreas > libavcodec/aacpsy.c |7 --- > libavcodec/encode.c |2 ++ > libavcodec/h264_direct.c| 14 +++--- > libavcodec/h264_refs.c | 20 +++

[FFmpeg-devel] [PATCH] all: Replace assert by av_assert

2025-03-23 Thread Andreas Rheinhardt
Patch attached. - Andreas From a6481493a5a9acf0968798dd5afd72239acca11c Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 23 Mar 2025 17:50:54 +0100 Subject: [PATCH] all: Replace assert by av_assert Also remove the assert.h inclusion from lavu/internal.h. Signed-off-by: Andreas Rhein