fftools: switch to the new child class iteration API

pull/340/head
Anton Khirnov 5 years ago
parent 1b4a98b029
commit e0fbb6cf2b
  1. 5
      fftools/cmdutils.c

@ -202,13 +202,14 @@ void show_help_options(const OptionDef *options, const char *msg, int req_flags,
void show_help_children(const AVClass *class, int flags) void show_help_children(const AVClass *class, int flags)
{ {
const AVClass *child = NULL; void *iter = NULL;
const AVClass *child;
if (class->option) { if (class->option) {
av_opt_show2(&class, NULL, flags, 0); av_opt_show2(&class, NULL, flags, 0);
printf("\n"); printf("\n");
} }
while (child = av_opt_child_class_next(class, child)) while (child = av_opt_child_class_iterate(class, &iter))
show_help_children(child, flags); show_help_children(child, flags);
} }

Loading…
Cancel
Save