summaryrefslogtreecommitdiff
path: root/libavfilter/vf_vectorscope.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-08-21 13:16:34 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-21 13:16:34 +0200
commit5176443b2b2e3b5c0ebfde0350e7711f0ab2331c (patch)
tree378517936f4d3438523a8a962b3376427dce3766 /libavfilter/vf_vectorscope.c
parent36f7a378950bea33d66c80368e0ee40b084aa644 (diff)
downloadffmpeg-5176443b2b2e3b5c0ebfde0350e7711f0ab2331c.tar.gz
avfilter/vf_vectorscope: Fix ;;
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/vf_vectorscope.c')
-rw-r--r--libavfilter/vf_vectorscope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_vectorscope.c b/libavfilter/vf_vectorscope.c
index 1e8a8a0262..8337a7ebcc 100644
--- a/libavfilter/vf_vectorscope.c
+++ b/libavfilter/vf_vectorscope.c
@@ -300,7 +300,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
VectorscopeContext *s = ctx->priv;
AVFilterLink *outlink = ctx->outputs[0];
AVFrame *out;
- uint8_t **dst;;
+ uint8_t **dst;
int i, k;
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);