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

Function avcodec_register

libavcodec/utils.c:87–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87void avcodec_register(AVCodec *codec)
88{
89 AVCodec **p;
90 avcodec_init();
91 p = &first_avcodec;
92 while (*p != NULL) p = &(*p)->next;
93 *p = codec;
94 codec->next = NULL;
95}
96
97#if LIBAVCODEC_VERSION_MAJOR < 53
98void register_avcodec(AVCodec *codec)

Callers 1

register_avcodecFunction · 0.85

Calls 1

avcodec_initFunction · 0.85

Tested by

no test coverage detected