[FFmpeg-cvslog] fftools/ffmpeg_dec: drop useless abort_codec_experimental()

Anton Khirnov git at videolan.org
Mon Apr 17 13:07:23 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Apr 11 13:24:24 2023 +0200| [c8fa58430edd6b2c3527d851baaa5a418e2ab9e2] | committer: Anton Khirnov

fftools/ffmpeg_dec: drop useless abort_codec_experimental()

It does nothing beyond exit_program().

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c8fa58430edd6b2c3527d851baaa5a418e2ab9e2
---

 fftools/ffmpeg_dec.c | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/fftools/ffmpeg_dec.c b/fftools/ffmpeg_dec.c
index d6fd0de126..658e7418e9 100644
--- a/fftools/ffmpeg_dec.c
+++ b/fftools/ffmpeg_dec.c
@@ -27,11 +27,6 @@
 
 #include "ffmpeg.h"
 
-static void abort_codec_experimental(const AVCodec *c, int encoder)
-{
-    exit_program(1);
-}
-
 static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)
 {
     InputStream *ist = s->opaque;
@@ -123,7 +118,7 @@ int dec_open(InputStream *ist)
 
     if ((ret = avcodec_open2(ist->dec_ctx, codec, &ist->decoder_opts)) < 0) {
         if (ret == AVERROR_EXPERIMENTAL)
-            abort_codec_experimental(codec, 0);
+            exit_program(1);
 
         av_log(ist, AV_LOG_ERROR, "Error while opening decoder: %s\n",
                av_err2str(ret));



More information about the ffmpeg-cvslog mailing list