tor-browser

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

moz.yaml (4430B)


      1 schema: 1
      2 
      3 bugzilla:
      4  product: Core
      5  component: "Audio/Video"
      6 
      7 origin:
      8  name: libvorbis
      9  description: software implementation of the Vorbis specification
     10 
     11  url: https://xiph.org/vorbis/
     12 
     13  release: 315da9cc9d30484c802b2e2ea150df39e060e2b9 (2025-02-05T08:11:19.000-08:00).
     14  revision: 315da9cc9d30484c802b2e2ea150df39e060e2b9
     15 
     16 
     17  license: BSD-3-Clause
     18  license-file: COPYING
     19 
     20 vendoring:
     21  url: https://gitlab.xiph.org/xiph/vorbis
     22  source-hosting: gitlab
     23 
     24  exclude:
     25    - "**"
     26 
     27  include:
     28    - lib/envelope.h
     29    - lib/lpc.h
     30    - lib/highlevel.h
     31    - lib/floor0.c
     32    - lib/lookup_data.h
     33    - lib/psy.c
     34    - lib/window.c
     35    - lib/info.c
     36    - lib/res0.c
     37    - lib/lookup.h
     38    - lib/lookup.c
     39    - lib/lsp.c
     40    - lib/registry.c
     41    - lib/smallft.h
     42    - lib/synthesis.c
     43    - lib/masking.h
     44    - lib/window.h
     45    - lib/scales.h
     46    - lib/lsp.h
     47    - lib/analysis.c
     48    - lib/misc.h
     49    - lib/floor1.c
     50    - lib/lpc.c
     51    - lib/backends.h
     52    - lib/sharedbook.c
     53    - lib/mapping0.c
     54    - lib/smallft.c
     55    - lib/psy.h
     56    - lib/bitrate.h
     57    - lib/envelope.c
     58    - lib/os.h
     59    - lib/mdct.c
     60    - lib/codec_internal.h
     61    - lib/mdct.h
     62    - lib/registry.h
     63    - lib/codebook.h
     64    - lib/codebook.c
     65    - lib/bitrate.c
     66    - lib/block.c
     67    - include/vorbis/codec.h
     68    - COPYING
     69    - README.md
     70    - AUTHORS
     71    # Encoder support
     72    - lib/vorbisenc.c
     73    - include/vorbis/vorbisenc.h
     74    - lib/modes/setup_44.h
     75    - lib/modes/setup_44u.h
     76    - lib/modes/setup_44p51.h
     77    - lib/modes/setup_32.h
     78    - lib/modes/setup_8.h
     79    - lib/modes/setup_11.h
     80    - lib/modes/setup_16.h
     81    - lib/modes/setup_22.h
     82    - lib/modes/setup_X.h
     83    - lib/modes/floor_all.h
     84    - lib/modes/residue_44.h
     85    - lib/modes/residue_44u.h
     86    - lib/modes/residue_44p51.h
     87    - lib/modes/residue_8.h
     88    - lib/modes/residue_16.h
     89    - lib/modes/psych_44.h
     90    - lib/modes/psych_8.h
     91    - lib/modes/psych_11.h
     92    - lib/modes/psych_16.h
     93    - lib/books/coupled/res_books_stereo.h
     94    - lib/books/coupled/res_books_51.h
     95    - lib/books/floor/floor_books.h
     96    - lib/books/uncoupled/res_books_uncoupled.h
     97 
     98  update-actions:
     99    - action: move-file
    100      from: '{vendor_dir}/lib/floor0.c'
    101      to: '{vendor_dir}/lib/vorbis_floor0.c'
    102    - action: move-file
    103      from: '{vendor_dir}/lib/psy.c'
    104      to: '{vendor_dir}/lib/vorbis_psy.c'
    105    - action: move-file
    106      from: '{vendor_dir}/lib/window.c'
    107      to: '{vendor_dir}/lib/vorbis_window.c'
    108    - action: move-file
    109      from: '{vendor_dir}/lib/info.c'
    110      to: '{vendor_dir}/lib/vorbis_info.c'
    111    - action: move-file
    112      from: '{vendor_dir}/lib/res0.c'
    113      to: '{vendor_dir}/lib/vorbis_res0.c'
    114    - action: move-file
    115      from: '{vendor_dir}/lib/lookup.c'
    116      to: '{vendor_dir}/lib/vorbis_lookup.c'
    117    - action: move-file
    118      from: '{vendor_dir}/lib/lsp.c'
    119      to: '{vendor_dir}/lib/vorbis_lsp.c'
    120    - action: replace-in-file
    121      pattern: 'lookup.c'
    122      with: 'vorbis_lookup.c'
    123      file: '{vendor_dir}/lib/vorbis_lsp.c'
    124    - action: move-file
    125      from: '{vendor_dir}/lib/registry.c'
    126      to: '{vendor_dir}/lib/vorbis_registry.c'
    127    - action: move-file
    128      from: '{vendor_dir}/lib/synthesis.c'
    129      to: '{vendor_dir}/lib/vorbis_synthesis.c'
    130    - action: move-file
    131      from: '{vendor_dir}/lib/analysis.c'
    132      to: '{vendor_dir}/lib/vorbis_analysis.c'
    133    - action: move-file
    134      from: '{vendor_dir}/lib/floor1.c'
    135      to: '{vendor_dir}/lib/vorbis_floor1.c'
    136    - action: move-file
    137      from: '{vendor_dir}/lib/lpc.c'
    138      to: '{vendor_dir}/lib/vorbis_lpc.c'
    139    - action: move-file
    140      from: '{vendor_dir}/lib/sharedbook.c'
    141      to: '{vendor_dir}/lib/vorbis_sharedbook.c'
    142    - action: move-file
    143      from: '{vendor_dir}/lib/mapping0.c'
    144      to: '{vendor_dir}/lib/vorbis_mapping0.c'
    145    - action: move-file
    146      from: '{vendor_dir}/lib/smallft.c'
    147      to: '{vendor_dir}/lib/vorbis_smallft.c'
    148    - action: move-file
    149      from: '{vendor_dir}/lib/envelope.c'
    150      to: '{vendor_dir}/lib/vorbis_envelope.c'
    151    - action: move-file
    152      from: '{vendor_dir}/lib/mdct.c'
    153      to: '{vendor_dir}/lib/vorbis_mdct.c'
    154    - action: move-file
    155      from: '{vendor_dir}/lib/codebook.c'
    156      to: '{vendor_dir}/lib/vorbis_codebook.c'
    157    - action: move-file
    158      from: '{vendor_dir}/lib/bitrate.c'
    159      to: '{vendor_dir}/lib/vorbis_bitrate.c'
    160    - action: move-file
    161      from: '{vendor_dir}/lib/block.c'
    162      to: '{vendor_dir}/lib/vorbis_block.c'