tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

codec_list.c (2181B)


      1 static const FFCodec * const codec_list[] = {
      2 #if CONFIG_VP8_DECODER
      3    &ff_vp8_decoder,
      4 #endif
      5 #if CONFIG_VP9_DECODER
      6    &ff_vp9_decoder,
      7 #endif
      8 #if CONFIG_FLAC_DECODER
      9    &ff_flac_decoder,
     10 #endif
     11 #if CONFIG_MP3_DECODER
     12    &ff_mp3_decoder,
     13 #endif
     14 #if CONFIG_LIBDAV1D
     15    &ff_libdav1d_decoder,
     16 #endif
     17 #if CONFIG_AV1_DECODER
     18    &ff_av1_decoder,
     19 #endif
     20 #if CONFIG_LIBVORBIS_DECODER
     21    &ff_libvorbis_decoder,
     22 #endif
     23 #if CONFIG_LIBVORBIS_ENCODER
     24    &ff_libvorbis_encoder,
     25 #endif
     26 #if CONFIG_PCM_ALAW_DECODER
     27    &ff_pcm_alaw_decoder,
     28 #endif
     29 #if CONFIG_PCM_F32LE_DECODER
     30    &ff_pcm_f32le_decoder,
     31 #endif
     32 #if CONFIG_PCM_MULAW_DECODER
     33    &ff_pcm_mulaw_decoder,
     34 #endif
     35 #if CONFIG_PCM_S16LE_DECODER
     36    &ff_pcm_s16le_decoder,
     37 #endif
     38 #if CONFIG_PCM_S24LE_DECODER
     39    &ff_pcm_s24le_decoder,
     40 #endif
     41 #if CONFIG_PCM_S32LE_DECODER
     42    &ff_pcm_s32le_decoder,
     43 #endif
     44 #if CONFIG_PCM_U8_DECODER
     45    &ff_pcm_u8_decoder,
     46 #endif
     47 #if CONFIG_LIBOPUS_DECODER
     48    &ff_libopus_decoder,
     49 #endif
     50 #if CONFIG_LIBOPUS_ENCODER
     51    &ff_libopus_encoder,
     52 #endif
     53 #if CONFIG_LIBVPX_VP8_DECODER
     54    &ff_libvpx_vp8_decoder,
     55 #endif
     56 #if CONFIG_LIBVPX_VP9_DECODER
     57    &ff_libvpx_vp9_decoder,
     58 #endif
     59 #if CONFIG_LIBVPX_VP8_ENCODER
     60    &ff_libvpx_vp8_encoder,
     61 #endif
     62 #if CONFIG_LIBVPX_VP9_ENCODER
     63    &ff_libvpx_vp9_encoder,
     64 #endif
     65 #if CONFIG_LIBAOM_AV1_ENCODER
     66    &ff_libaom_av1_encoder,
     67 #endif
     68 #if CONFIG_AAC_MEDIACODEC_DECODER
     69    &ff_aac_mediacodec_decoder,
     70 #endif
     71 #if CONFIG_AV1_MEDIACODEC_DECODER
     72    &ff_av1_mediacodec_decoder,
     73 #endif
     74 #if CONFIG_VP8_MEDIACODEC_DECODER
     75    &ff_vp8_mediacodec_decoder,
     76 #endif
     77 #if CONFIG_VP9_MEDIACODEC_DECODER
     78    &ff_vp9_mediacodec_decoder,
     79 #endif
     80 #if CONFIG_H264_MEDIACODEC_DECODER
     81    &ff_h264_mediacodec_decoder,
     82 #endif
     83 #if CONFIG_HEVC_MEDIACODEC_DECODER
     84    &ff_hevc_mediacodec_decoder,
     85 #endif
     86 #if CONFIG_AV1_MEDIACODEC_ENCODER
     87    &ff_av1_mediacodec_encoder,
     88 #endif
     89 #if CONFIG_VP8_MEDIACODEC_ENCODER
     90    &ff_vp8_mediacodec_encoder,
     91 #endif
     92 #if CONFIG_VP9_MEDIACODEC_ENCODER
     93    &ff_vp9_mediacodec_encoder,
     94 #endif
     95 #if CONFIG_H264_MEDIACODEC_ENCODER
     96    &ff_h264_mediacodec_encoder,
     97 #endif
     98 #if CONFIG_HEVC_MEDIACODEC_ENCODER
     99    &ff_hevc_mediacodec_encoder,
    100 #endif
    101    NULL };