MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / codec_child_class_iterate

Function codec_child_class_iterate

libavcodec/options.c:59–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57}
58
59static const AVClass *codec_child_class_iterate(void **iter)
60{
61 const AVCodec *c;
62 /* find next codec with priv options */
63 while (c = av_codec_iterate(iter))
64 if (c->priv_class)
65 return c->priv_class;
66 return NULL;
67}
68
69static AVClassCategory get_category(void *ptr)
70{

Callers

nothing calls this directly

Calls 1

av_codec_iterateFunction · 0.85

Tested by

no test coverage detected