diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-11-16 21:39:37 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-16 21:39:37 +0100 |
commit | 395508d9b6c7ad7ddef5ae9a9d1229913b118437 (patch) | |
tree | 7a27282f0f8bbfdee446d132db38c0c40db02486 | |
parent | 4902780d2b537983cd028d8f42d8839fdb074442 (diff) | |
download | ffmpeg-395508d9b6c7ad7ddef5ae9a9d1229913b118437.tar.gz |
avfilter/vf_dedot: initizalize ret variable
-rw-r--r-- | libavfilter/vf_dedot.c | 2 |
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); |