Commit 4798237f authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/deshake_opencl: Remove redundant return

Fixes: CID1396846
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 4064f3f0
...@@ -194,7 +194,5 @@ int ff_opencl_deshake_process_inout_buf(AVFilterContext *ctx, AVFrame *in, AVFra ...@@ -194,7 +194,5 @@ int ff_opencl_deshake_process_inout_buf(AVFilterContext *ctx, AVFrame *in, AVFra
deshake->opencl_ctx.cl_inbuf_size, deshake->opencl_ctx.cl_inbuf_size,
0, in->data,deshake->opencl_ctx.in_plane_size, 0, in->data,deshake->opencl_ctx.in_plane_size,
deshake->opencl_ctx.plane_num); deshake->opencl_ctx.plane_num);
if(ret < 0)
return ret;
return ret; return ret;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment