Re: [FFmpeg-devel] [PATCH 1/3] fftools/cmdutils: Use av_err2str

2022-10-13 Thread Anton Khirnov
Patchset looks good, will push. -- Anton Khirnov ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe

[FFmpeg-devel] [PATCH 1/3] fftools/cmdutils: Use av_err2str

2022-10-04 Thread Marvin Scholz
av_err2str which is a wrapper for av_strerror already calls strerror_r if available and if not has a fallback for the other error codes that would be handled by that, so manually calling strerror again if it fails is not necessary. --- fftools/cmdutils.c | 7 +-- 1 file changed, 1 insertion(+)