blob: 3037e58e091fb587c6a2cce9bf13c89a3c6f9e81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
static const AVCodec * const codec_list[] = {
#if CONFIG_VP8_DECODER
&ff_vp8_decoder,
#endif
#if CONFIG_VP9_DECODER
&ff_vp9_decoder,
#endif
#if CONFIG_FLAC_DECODER
&ff_flac_decoder,
#endif
#if CONFIG_MP3_DECODER
&ff_mp3_decoder,
#endif
NULL };
|