1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
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
#if CONFIG_LIBVORBIS_DECODER
&ff_libvorbis_decoder,
#endif
#if CONFIG_PCM_ALAW_DECODER
&ff_pcm_alaw_decoder,
#endif
#if CONFIG_PCM_F32LE_DECODER
&ff_pcm_f32le_decoder,
#endif
#if CONFIG_PCM_MULAW_DECODER
&ff_pcm_mulaw_decoder,
#endif
#if CONFIG_PCM_S16LE_DECODER
&ff_pcm_s16le_decoder,
#endif
#if CONFIG_PCM_S24LE_DECODER
&ff_pcm_s24le_decoder,
#endif
#if CONFIG_PCM_S32LE_DECODER
&ff_pcm_s32le_decoder,
#endif
#if CONFIG_PCM_U8_DECODER
&ff_pcm_u8_decoder,
#endif
#if CONFIG_LIBOPUS_DECODER
&ff_libopus_decoder,
#endif
#if CONFIG_LIBVPX_VP8_DECODER
&ff_libvpx_vp8_decoder,
#endif
#if CONFIG_LIBVPX_VP9_DECODER
&ff_libvpx_vp9_decoder,
#endif
#if CONFIG_LIBVPX_VP8_ENCODER
&ff_libvpx_vp8_encoder,
#endif
#if CONFIG_LIBVPX_VP9_ENCODER
&ff_libvpx_vp9_encoder,
#endif
#if CONFIG_LIBAOM_AV1_ENCODER
&ff_libaom_av1_encoder,
#endif
NULL };
|