summaryrefslogtreecommitdiffstats
path: root/media/libvpx/moz.yaml
blob: 0b3ec5248251da8f9999487e0e7636df5332f554 (plain)
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
# Version of this schema
schema: 1

bugzilla:
  # Bugzilla product and component for this directory and subdirectories
  product: Core
  component: "Audio/Video"

# Document the source of externally hosted code
origin:

  # Short name of the package/library
  name: libvpx

  description: VP8/VP9 Codec SDK

  # Full URL for the package's homepage/etc
  # Usually different from repository url
  url: https://chromium.googlesource.com/webm/libvpx

  # Human-readable identifier for this version/release
  # Generally "version NNN", "tag SSS", "bookmark SSS"
  release: 7fb8ceccf92c35cd5131b05c0502916715ebc76b (Fri Mar 15 01:11:50 2024).

  # Revision to pull in
  # Must be a long or short commit SHA (long preferred)
  revision: 7fb8ceccf92c35cd5131b05c0502916715ebc76b

  # The package's license, where possible using the mnemonic from
  # https://spdx.org/licenses/
  # Multiple licenses can be specified (as a YAML list)
  # A "LICENSE" file must exist containing the full license text
  license: BSD-3-Clause

  license-file: LICENSE

updatebot:
    maintainer-phab: chunmin
    maintainer-bz: cchang@mozilla.com
    tasks:
      - type: vendoring
        enabled: true
        frequency: release

vendoring:
  url: https://chromium.googlesource.com/webm/libvpx
  source-hosting: googlesource
  vendor-directory: media/libvpx/libvpx/
  skip-vendoring-steps: ['update-moz-build']

  exclude:
    - third_party/libwebm
    - tools/

  patches:
    - arm_cpu_runtime_detection_code_on_openbsd.patch
    - input_frame_validation.patch
    - input_frame_validation_vp9.patch
    - missing_header.patch

  update-actions:
    - action: move-file
      from: '{vendor_dir}/vpx_dsp/x86/loopfilter_sse2.c'
      to: '{vendor_dir}/vpx_dsp/x86/loopfilter_intrin_sse2.c'
    - action: move-file
      from: '{vendor_dir}/vpx_dsp/loongarch/quantize_lsx.c'
      to: '{vendor_dir}/vpx_dsp/loongarch/quantize_intrin_lsx.c'
    - action: run-command
      command: patch
      args: ['-p1', '-i', '{yaml_dir}/rename_duplicate_files.patch', '-d', '{yaml_dir}/libvpx']
      cwd: '{yaml_dir}'
    - action: run-command
      command: patch
      args: ['-p1', '-i', '{yaml_dir}/win64_build_fix.patch', '-d', '{yaml_dir}/libvpx']
      cwd: '{yaml_dir}'
    - action: run-script
      script: '{yaml_dir}/generate_sources_mozbuild.sh'
      cwd: '{yaml_dir}'