Browse Source

avfilter/vf_fieldmatch: check ff_insert_inpad() for failure

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.4
Paul B Mahol 8 years ago
parent
commit
dfea94ce99
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      libavfilter/vf_fieldmatch.c

+ 9
- 2
libavfilter/vf_fieldmatch.c View File

@@ -904,17 +904,24 @@ static av_cold int fieldmatch_init(AVFilterContext *ctx)
.filter_frame = filter_frame,
.config_props = config_input,
};
int ret;

if (!pad.name)
return AVERROR(ENOMEM);
ff_insert_inpad(ctx, INPUT_MAIN, &pad);
if ((ret = ff_insert_inpad(ctx, INPUT_MAIN, &pad)) < 0) {
av_freep(&pad.name);
return ret;
}

if (fm->ppsrc) {
pad.name = av_strdup("clean_src");
pad.config_props = NULL;
if (!pad.name)
return AVERROR(ENOMEM);
ff_insert_inpad(ctx, INPUT_CLEANSRC, &pad);
if ((ret = ff_insert_inpad(ctx, INPUT_CLEANSRC, &pad)) < 0) {
av_freep(&pad.name);
return ret;
}
}

if ((fm->blockx & (fm->blockx - 1)) ||


Loading…
Cancel
Save