You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/deshake_kernel: fix reset value bug of deshake kernel
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
a56fd051ee
commit
fdad04e756
@@ -165,8 +165,6 @@ kernel void avfilter_transform(global unsigned char *src,
|
|||||||
tempsrc = src_u;
|
tempsrc = src_u;
|
||||||
tempsrc_stride = src_stride_ch;
|
tempsrc_stride = src_stride_ch;
|
||||||
tempdst_stride = dst_stride_ch;
|
tempdst_stride = dst_stride_ch;
|
||||||
temp_height = height;
|
|
||||||
temp_width = width;
|
|
||||||
temp_height = ch;
|
temp_height = ch;
|
||||||
temp_width = cw;
|
temp_width = cw;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user