blob: 063f8ff78d2323424efbcf20702996b5ed6aa055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
NULL };
|