| 57 | } |
| 58 | |
| 59 | static 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 | |
| 69 | static AVClassCategory get_category(void *ptr) |
| 70 | { |
nothing calls this directly
no test coverage detected