diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-30 22:21:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-03-30 22:46:31 +0200 |
commit | 4798237f01cf7f27e5528bbbfdc6ef40a0b50660 (patch) | |
tree | 99d7da31d58a4db49b75d4fff22d11243c9c699d /libavfilter | |
parent | 4064f3f0dfe71f6d378b9252a390f89c4315bf54 (diff) | |
download | ffmpeg-streaming-4798237f01cf7f27e5528bbbfdc6ef40a0b50660.zip ffmpeg-streaming-4798237f01cf7f27e5528bbbfdc6ef40a0b50660.tar.gz |
avfilter/deshake_opencl: Remove redundant return
Fixes: CID1396846
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/deshake_opencl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/deshake_opencl.c b/libavfilter/deshake_opencl.c index 91ae7d5..877ec1d 100644 --- a/libavfilter/deshake_opencl.c +++ b/libavfilter/deshake_opencl.c @@ -194,7 +194,5 @@ int ff_opencl_deshake_process_inout_buf(AVFilterContext *ctx, AVFrame *in, AVFra deshake->opencl_ctx.cl_inbuf_size, 0, in->data,deshake->opencl_ctx.in_plane_size, deshake->opencl_ctx.plane_num); - if(ret < 0) - return ret; return ret; } |