[FFmpeg-cvslog] fftools/ffmpeg_filter: drop a redundant error message

Anton Khirnov git at videolan.org
Mon May 22 18:11:44 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sat May 13 10:26:16 2023 +0200| [0f501b2ad999a63669b6dd002544a447abd368d4] | committer: Anton Khirnov

fftools/ffmpeg_filter: drop a redundant error message

In case no decoder is available, dec_open() called from ist_use() will
fail with 'Decoding requested, but no decoder found', so this check is
redundant.

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

 fftools/ffmpeg_filter.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index 12e756e489..16f29a313f 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -1201,12 +1201,6 @@ static int configure_input_audio_filter(FilterGraph *fg, InputFilter *ifilter,
 static int configure_input_filter(FilterGraph *fg, InputFilter *ifilter,
                                   AVFilterInOut *in)
 {
-    if (!ifilter->ist->dec) {
-        av_log(NULL, AV_LOG_ERROR,
-               "No decoder for stream #%d:%d, filtering impossible\n",
-               ifilter->ist->file_index, ifilter->ist->st->index);
-        return AVERROR_DECODER_NOT_FOUND;
-    }
     switch (avfilter_pad_get_type(in->filter_ctx->input_pads, in->pad_idx)) {
     case AVMEDIA_TYPE_VIDEO: return configure_input_video_filter(fg, ifilter, in);
     case AVMEDIA_TYPE_AUDIO: return configure_input_audio_filter(fg, ifilter, in);



More information about the ffmpeg-cvslog mailing list