summaryrefslogtreecommitdiff
path: root/libavcodec/snowenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/snowenc.c')
-rw-r--r--libavcodec/snowenc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c
index 4cf7ff1145..31a48972a5 100644
--- a/libavcodec/snowenc.c
+++ b/libavcodec/snowenc.c
@@ -130,8 +130,10 @@ static av_cold int encode_init(AVCodecContext *avctx)
if (ret)
return ret;
- ff_set_cmp(&s->mecc, s->mecc.me_cmp, s->avctx->me_cmp);
- ff_set_cmp(&s->mecc, s->mecc.me_sub_cmp, s->avctx->me_sub_cmp);
+ ret = ff_set_cmp(&s->mecc, s->mecc.me_cmp, s->avctx->me_cmp);
+ ret |= ff_set_cmp(&s->mecc, s->mecc.me_sub_cmp, s->avctx->me_sub_cmp);
+ if (ret < 0)
+ return AVERROR(EINVAL);
s->input_picture = av_frame_alloc();
if (!s->input_picture)