Commit 39962072 authored by Josh de Kock's avatar Josh de Kock

tools: stop using deprecated av_codec_next()

Signed-off-by: 's avatarJosh de Kock <josh@itanimul.li>
parent 43c64881
......@@ -113,13 +113,14 @@ static void show_format_opts(void)
static void show_codec_opts(void)
{
void *iter = NULL;
AVCodec *c = NULL;
printf("@section Generic codec AVOptions\n");
show_opts(avcodec_get_class());
printf("@section Codec-specific AVOptions\n");
while ((c = av_codec_next(c))) {
while ((c = av_codec_iterate(&iter))) {
if (!c->priv_class)
continue;
printf("@subsection %s AVOptions\n", c->priv_class->class_name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment