[FFmpeg-devel] [PATCH] Adding av_abort() : adding custom handlers for abort().

2022-07-27 Thread Julien Vary
abort() behavior), to allow dumping before the actual abort(). Also 'av_logging' the av_abort() location. Signed-off-by: Julien Vary --- fftools/ffmpeg.c | 2 +- fftools/ffmpeg_opt.c | 2 +- libavcodec/mpegpicture.c | 2 +- libavcodec/ppc/hevcdsp.

Re: [FFmpeg-devel] [PATCH] Adding av_abort() : adding custom handlers for abort().

2022-07-27 Thread Julien Vary
> abort() should generally not be in a reachable part of the code - not inside > any of the libraries anyway, ffmpeg.c is a different topic. > If it is reachable with any input files, and not just present to shut up > compilers, this is a bug and should be addressed to return an error instead.

Re: [FFmpeg-devel] [PATCH] Adding av_abort() : adding custom handlers for abort().

2022-07-27 Thread Julien Vary
>> abort() should generally not be in a reachable part of the code - not >> inside any of the libraries anyway, ffmpeg.c is a different topic. >> If it is reachable with any input files, and not just present to shut >> up compilers, this is a bug and should be addressed to return an error >> i