summaryrefslogtreecommitdiff
path: root/libavfilter/vsrc_gradients.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-01 06:10:44 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-01 06:10:44 +0100
commit0e645b98c66aafe32517b946a6484eb5579172d4 (patch)
tree228bd4cbd4d1584f5bc26b8b4a85f346135aa276 /libavfilter/vsrc_gradients.c
parent590f491b0aefe770876c09c09433c24fc21a1565 (diff)
downloadffmpeg-0e645b98c66aafe32517b946a6484eb5579172d4.tar.gz
Remove double ';'
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavfilter/vsrc_gradients.c')
-rw-r--r--libavfilter/vsrc_gradients.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vsrc_gradients.c b/libavfilter/vsrc_gradients.c
index 895557396c..b05ad5bf9a 100644
--- a/libavfilter/vsrc_gradients.c
+++ b/libavfilter/vsrc_gradients.c
@@ -187,7 +187,7 @@ static int draw_gradients_slice(AVFilterContext *ctx, void *arg, int job, int nb
for (int y = start; y < end; y++) {
for (int x = 0; x < width; x++) {
float factor = project(s->fx0, s->fy0, s->fx1, s->fy1, x, y);
- dst[x] = lerp_colors(s->color_rgba, s->nb_colors, factor);;
+ dst[x] = lerp_colors(s->color_rgba, s->nb_colors, factor);
}
dst += linesize;
@@ -210,7 +210,7 @@ static int draw_gradients_slice16(AVFilterContext *ctx, void *arg, int job, int
for (int y = start; y < end; y++) {
for (int x = 0; x < width; x++) {
float factor = project(s->fx0, s->fy0, s->fx1, s->fy1, x, y);
- dst[x] = lerp_colors16(s->color_rgba, s->nb_colors, factor);;
+ dst[x] = lerp_colors16(s->color_rgba, s->nb_colors, factor);
}
dst += linesize;