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

Function avcodec_find_decoder

libavcodec/utils.c:755–765  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753}
754
755AVCodec *avcodec_find_decoder(enum CodecID id)
756{
757 AVCodec *p;
758 p = first_avcodec;
759 while (p) {
760 if (p->decode != NULL && p->id == id)
761 return p;
762 p = p->next;
763 }
764 return NULL;
765}
766
767AVCodec *avcodec_find_decoder_by_name(const char *name)
768{

Callers 11

av_transcodeFunction · 0.85
find_codec_or_dieFunction · 0.85
stream_component_openFunction · 0.85
open_input_fileFunction · 0.85
open_parserFunction · 0.85
try_decode_frameFunction · 0.85
av_find_stream_infoFunction · 0.85
sdp_parse_rtpmapFunction · 0.85
avcodec_stringFunction · 0.85
audio_decode_exampleFunction · 0.85
video_decode_exampleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected