mirror of https://git.ffmpeg.org/ffmpeg.git
tools: stop using deprecated av_codec_next()
Signed-off-by: Josh de Kock <josh@itanimul.li>
This commit is contained in:
parent
43c648817d
commit
39962072a8
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue