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:
authorThilo Borgmann <thilo.borgmann@mail.de>2022-06-01 22:31:20 +0300
committerThilo Borgmann <thilo.borgmann@mail.de>2022-06-01 22:31:20 +0300
commite9107d16f3ea1eff48f0bfdcaff49f7c32a20919 (patch)
treeb603c0d0d28adf7eec22b0d600079ec86aa82df2 /libavfilter/vf_blockdetect.c
parent6e13c30a8fd45e14303ef4a8e4da3554d5b4ba8e (diff)
lavfi/blockdetect: Remove nop init() function
Diffstat (limited to 'libavfilter/vf_blockdetect.c')
-rw-r--r--libavfilter/vf_blockdetect.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/vf_blockdetect.c b/libavfilter/vf_blockdetect.c
index 624dcfdeda..8503b8d815 100644
--- a/libavfilter/vf_blockdetect.c
+++ b/libavfilter/vf_blockdetect.c
@@ -60,11 +60,6 @@ static const AVOption blockdetect_options[] = {
AVFILTER_DEFINE_CLASS(blockdetect);
-static av_cold int blockdetect_init(AVFilterContext *ctx)
-{
- return 0;
-}
-
static int blockdetect_config_input(AVFilterLink *inlink)
{
AVFilterContext *ctx = inlink->dst;
@@ -284,7 +279,6 @@ const AVFilter ff_vf_blockdetect = {
.name = "blockdetect",
.description = NULL_IF_CONFIG_SMALL("Blockdetect filter."),
.priv_size = sizeof(BLKContext),
- .init = blockdetect_init,
.uninit = blockdetect_uninit,
FILTER_PIXFMTS_ARRAY(pix_fmts),
FILTER_INPUTS(blockdetect_inputs),