Re: [FFmpeg-devel] [PATCH 1/5] ffprobe: remove an unnecessary deprecation guard

2021-02-08 Thread Paul B Mahol
lgtm ___ 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/5] ffprobe: remove an unnecessary deprecation guard

2021-02-08 Thread Anton Khirnov
The code it is guarding is not accessing anything deprecated (disregarding the fact that a library caller must not use FF_API deprecation guards). --- fftools/ffprobe.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 3453aa09ff..4e5beb5710 100644 --