File: codec_list.c

package info (click to toggle)
firefox 149.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,767,760 kB
  • sloc: cpp: 7,416,064; javascript: 6,752,859; ansic: 3,774,850; python: 1,250,473; xml: 641,578; asm: 439,191; java: 186,617; sh: 56,634; makefile: 18,856; objc: 13,092; perl: 12,763; pascal: 5,960; yacc: 4,583; cs: 3,846; lex: 1,720; ruby: 1,002; php: 436; lisp: 258; awk: 105; sql: 66; sed: 53; csh: 10; exp: 6
file content (101 lines) | stat: -rw-r--r-- 2,181 bytes parent folder | download | duplicates (2)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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_LIBVORBIS_ENCODER
    &ff_libvorbis_encoder,
#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_LIBOPUS_ENCODER
    &ff_libopus_encoder,
#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
#if CONFIG_AAC_MEDIACODEC_DECODER
    &ff_aac_mediacodec_decoder,
#endif
#if CONFIG_AV1_MEDIACODEC_DECODER
    &ff_av1_mediacodec_decoder,
#endif
#if CONFIG_VP8_MEDIACODEC_DECODER
    &ff_vp8_mediacodec_decoder,
#endif
#if CONFIG_VP9_MEDIACODEC_DECODER
    &ff_vp9_mediacodec_decoder,
#endif
#if CONFIG_H264_MEDIACODEC_DECODER
    &ff_h264_mediacodec_decoder,
#endif
#if CONFIG_HEVC_MEDIACODEC_DECODER
    &ff_hevc_mediacodec_decoder,
#endif
#if CONFIG_AV1_MEDIACODEC_ENCODER
    &ff_av1_mediacodec_encoder,
#endif
#if CONFIG_VP8_MEDIACODEC_ENCODER
    &ff_vp8_mediacodec_encoder,
#endif
#if CONFIG_VP9_MEDIACODEC_ENCODER
    &ff_vp9_mediacodec_encoder,
#endif
#if CONFIG_H264_MEDIACODEC_ENCODER
    &ff_h264_mediacodec_encoder,
#endif
#if CONFIG_HEVC_MEDIACODEC_ENCODER
    &ff_hevc_mediacodec_encoder,
#endif
    NULL };