mirror of https://git.ffmpeg.org/ffmpeg.git
vf_unsharp: Fix false ‘src2’ may be used uninitialized in this function warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e73cc2819e
commit
cb3034e0d1
|
@ -73,7 +73,7 @@ static void apply_unsharp( uint8_t *dst, int dst_stride,
|
||||||
|
|
||||||
int32_t res;
|
int32_t res;
|
||||||
int x, y, z;
|
int x, y, z;
|
||||||
const uint8_t *src2;
|
const uint8_t *src2 = NULL; //silence a warning
|
||||||
|
|
||||||
if (!fp->amount) {
|
if (!fp->amount) {
|
||||||
if (dst_stride == src_stride)
|
if (dst_stride == src_stride)
|
||||||
|
|
Loading…
Reference in New Issue