tor-browser

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

parser_list.c (195B)


      1 #include "config_components.h"
      2 
      3 static const AVCodecParser * const parser_list[] = {
      4 #if CONFIG_VP8_PARSER
      5    &ff_vp8_parser,
      6 #endif
      7 #if CONFIG_VP9_PARSER
      8    &ff_vp9_parser,
      9 #endif
     10    NULL };