Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-10-14 11:52:27 +0300
committerPaul B Mahol <onemda@gmail.com>2019-10-14 11:52:27 +0300
commit996ff3fe86b0a7a0d2b8bc5a2570cb1271eb9474 (patch)
tree49ba29b65d019bca4bae1e6fc214b263ccdf018c /libavfilter/vf_edgedetect.c
parent634529c40d62e02bacea3a7f91d4226a9e4b3cbc (diff)
avfilter/vf_edgedetect: fix coverity issue
Diffstat (limited to 'libavfilter/vf_edgedetect.c')
-rw-r--r--libavfilter/vf_edgedetect.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c
index 11a31fa4ff..ea0efe0de3 100644
--- a/libavfilter/vf_edgedetect.c
+++ b/libavfilter/vf_edgedetect.c
@@ -150,8 +150,9 @@ static void gaussian_blur(AVFilterContext *ctx, int w, int h,
int i, j;
memcpy(dst, src, w); dst += dst_linesize; src += src_linesize;
- if (h > 1)
+ if (h > 1) {
memcpy(dst, src, w); dst += dst_linesize; src += src_linesize;
+ }
for (j = 2; j < h - 2; j++) {
dst[0] = src[0];
dst[1] = src[1];
@@ -181,8 +182,9 @@ static void gaussian_blur(AVFilterContext *ctx, int w, int h,
dst += dst_linesize;
src += src_linesize;
}
- if (h > 2)
+ if (h > 2) {
memcpy(dst, src, w); dst += dst_linesize; src += src_linesize;
+ }
if (h > 3)
memcpy(dst, src, w);
}