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

Function avcodec_descriptor_next

libavcodec/codec_desc.c:3894–3901  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3892}
3893
3894const AVCodecDescriptor *avcodec_descriptor_next(const AVCodecDescriptor *prev)
3895{
3896 if (!prev)
3897 return &codec_descriptors[0];
3898 if (prev - codec_descriptors < FF_ARRAY_ELEMS(codec_descriptors) - 1)
3899 return prev + 1;
3900 return NULL;
3901}
3902
3903const AVCodecDescriptor *avcodec_descriptor_get_by_name(const char *name)
3904{

Callers 3

get_codecs_sortedFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68