summaryrefslogtreecommitdiffstats
path: root/media/ffvpx/libavcodec/codec_list.c
blob: db49c8fffb06e3898c415654eca55eea02c10308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
static const FFCodec * 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
#if CONFIG_LIBDAV1D
    &ff_libdav1d_decoder,
#endif
#if CONFIG_AV1_DECODER
    &ff_av1_decoder,
#endif
    NULL };