mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-10 22:33:14 +00:00
avfilter/deshake_opencl: Remove redundant return
Fixes: CID1396846 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4064f3f0df
commit
4798237f01
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user