summaryrefslogtreecommitdiff
path: root/libavfilter/vf_dedot.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-11-16 21:39:37 +0100
committerPaul B Mahol <onemda@gmail.com>2018-11-16 21:39:37 +0100
commit395508d9b6c7ad7ddef5ae9a9d1229913b118437 (patch)
tree7a27282f0f8bbfdee446d132db38c0c40db02486 /libavfilter/vf_dedot.c
parent4902780d2b537983cd028d8f42d8839fdb074442 (diff)
avfilter/vf_dedot: initizalize ret variable
Diffstat (limited to 'libavfilter/vf_dedot.c')
-rw-r--r--libavfilter/vf_dedot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_dedot.c b/libavfilter/vf_dedot.c
index 35862c5cd4..bb0f9e5ac8 100644
--- a/libavfilter/vf_dedot.c
+++ b/libavfilter/vf_dedot.c
@@ -265,7 +265,7 @@ static int activate(AVFilterContext *ctx)
AVFrame *frame = NULL;
int64_t pts;
int status;
- int ret;
+ int ret = 0;
FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);