diff options
author | Clément Bœsch <u@pkh.me> | 2015-03-15 14:20:34 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-03-16 23:43:12 +0100 |
commit | fd682b189264dc3a7fd913a21ff0c23bb08e3ef4 (patch) | |
tree | 8685464c0f7b2af6158f3f253824abe12efc8695 /libavfilter/vf_codecview.c | |
parent | 545b0dd6aa30f392a9693b41c8f21e28c3dde0dd (diff) | |
download | ffmpeg-fd682b189264dc3a7fd913a21ff0c23bb08e3ef4.tar.gz |
avfilter: handle error in query_formats() of a bunch of random video filters
Diffstat (limited to 'libavfilter/vf_codecview.c')
-rw-r--r-- | libavfilter/vf_codecview.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavfilter/vf_codecview.c b/libavfilter/vf_codecview.c index d777f97ef2..27fac3fa97 100644 --- a/libavfilter/vf_codecview.c +++ b/libavfilter/vf_codecview.c @@ -62,8 +62,10 @@ static int query_formats(AVFilterContext *ctx) // TODO: we can probably add way more pixel formats without any other // changes; anything with 8-bit luma in first plane should be working static const enum AVPixelFormat pix_fmts[] = {AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE}; - ff_set_common_formats(ctx, ff_make_format_list(pix_fmts)); - return 0; + AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts); + if (!fmts_list) + return AVERROR(ENOMEM); + return ff_set_common_formats(ctx, fmts_list); } static int clip_line(int *sx, int *sy, int *ex, int *ey, int maxx) |