Re: [FFmpeg-devel] [PATCH v2] avcodec/noise_bsf: Check for wrapped frames

2023-06-05 Thread Michael Niedermayer
On Mon, Jun 05, 2023 at 12:21:13PM +0200, Anton Khirnov wrote: > Quoting Michael Niedermayer (2023-06-04 21:53:22) > > Wrapped frames contain pointers so they need specific code to > > noise them, the generic code would lead to segfaults > > > > Signed-off-by: Michael Niedermayer > > --- > > lib

Re: [FFmpeg-devel] [PATCH v2] avcodec/noise_bsf: Check for wrapped frames

2023-06-05 Thread Anton Khirnov
Quoting Michael Niedermayer (2023-06-04 21:53:22) > Wrapped frames contain pointers so they need specific code to > noise them, the generic code would lead to segfaults > > Signed-off-by: Michael Niedermayer > --- > libavcodec/noise_bsf.c | 7 +++ > 1 file changed, 7 insertions(+) > > diff

[FFmpeg-devel] [PATCH v2] avcodec/noise_bsf: Check for wrapped frames

2023-06-04 Thread Michael Niedermayer
Wrapped frames contain pointers so they need specific code to noise them, the generic code would lead to segfaults Signed-off-by: Michael Niedermayer --- libavcodec/noise_bsf.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/libavcodec/noise_bsf.c b/libavcodec/noise_bsf.c index 168f3a