Browse Source

vf_spp: switch to child_class_iterate()

tags/n4.4
Anton Khirnov 5 years ago
parent
commit
c7d8d8d8d9
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      libavfilter/vf_spp.c

+ 12
- 0
libavfilter/vf_spp.c View File

@@ -44,10 +44,19 @@ enum mode {
NB_MODES
};

#if FF_API_CHILD_CLASS_NEXT
static const AVClass *child_class_next(const AVClass *prev)
{
return prev ? NULL : avcodec_dct_get_class();
}
#endif

static const AVClass *child_class_iterate(void **iter)
{
const AVClass *c = *iter ? NULL : avcodec_dct_get_class();
*iter = (void*)(uintptr_t)c;
return c;
}

static void *child_next(void *obj, void *prev)
{
@@ -74,7 +83,10 @@ static const AVClass spp_class = {
.option = spp_options,
.version = LIBAVUTIL_VERSION_INT,
.category = AV_CLASS_CATEGORY_FILTER,
#if FF_API_CHILD_CLASS_NEXT
.child_class_next = child_class_next,
#endif
.child_class_iterate = child_class_iterate,
.child_next = child_next,
};



Loading…
Cancel
Save