Message ID | 20231109122534.124157-5-ffmpeg@haasn.xyz |
---|---|
State | New |
Headers | show |
Series | YUVJ removal + filter negotiation | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
Quoting Niklas Haas (2023-11-09 13:19:36) > From: Niklas Haas <git@haasn.dev> > > This memset is bogus, it accomplishes nothing in the best case and > regresses future additions to AVBufferSrcParameters in the worst case. > --- > fftools/ffmpeg_filter.c | 3 --- > 1 file changed, 3 deletions(-) Looks very ok.
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index b7da105141..e699798897 100644 --- a/fftools/ffmpeg_filter.c +++ b/fftools/ffmpeg_filter.c @@ -1400,11 +1400,8 @@ static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter, int ret, pad_idx = 0; int64_t tsoffset = 0; AVBufferSrcParameters *par = av_buffersrc_parameters_alloc(); - if (!par) return AVERROR(ENOMEM); - memset(par, 0, sizeof(*par)); - par->format = AV_PIX_FMT_NONE; if (ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) { av_log(fg, AV_LOG_ERROR, "Cannot connect video filter to audio input\n");
From: Niklas Haas <git@haasn.dev> This memset is bogus, it accomplishes nothing in the best case and regresses future additions to AVBufferSrcParameters in the worst case. --- fftools/ffmpeg_filter.c | 3 --- 1 file changed, 3 deletions(-)