summaryrefslogtreecommitdiffstats
path: root/dom/media/platforms/moz.build
blob: c71f22a22eeead703192edfb710cc6113d42c11c (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

EXPORTS += [
    "agnostic/AgnosticDecoderModule.h",
    "agnostic/BlankDecoderModule.h",
    "agnostic/DummyMediaDataDecoder.h",
    "agnostic/OpusDecoder.h",
    "agnostic/TheoraDecoder.h",
    "agnostic/VorbisDecoder.h",
    "agnostic/VPXDecoder.h",
    "agnostic/WAVDecoder.h",
    "AllocationPolicy.h",
    "MediaCodecsSupport.h",
    "MediaTelemetryConstants.h",
    "PDMFactory.h",
    "PEMFactory.h",
    "PlatformDecoderModule.h",
    "PlatformEncoderModule.h",
    "ReorderQueue.h",
    "SimpleMap.h",
    "wrappers/AudioTrimmer.h",
    "wrappers/MediaChangeMonitor.h",
    "wrappers/MediaDataDecoderProxy.h",
]

UNIFIED_SOURCES += [
    "agnostic/AgnosticDecoderModule.cpp",
    "agnostic/BlankDecoderModule.cpp",
    "agnostic/DummyMediaDataDecoder.cpp",
    "agnostic/NullDecoderModule.cpp",
    "agnostic/OpusDecoder.cpp",
    "agnostic/TheoraDecoder.cpp",
    "agnostic/VorbisDecoder.cpp",
    "agnostic/VPXDecoder.cpp",
    "agnostic/WAVDecoder.cpp",
    "AllocationPolicy.cpp",
    "MediaCodecsSupport.cpp",
    "PDMFactory.cpp",
    "PEMFactory.cpp",
    "PlatformDecoderModule.cpp",
    "wrappers/AudioTrimmer.cpp",
    "wrappers/MediaChangeMonitor.cpp",
    "wrappers/MediaDataDecoderProxy.cpp",
]

DIRS += ["agnostic/bytestreams", "agnostic/eme", "agnostic/gmp", "omx"]

if CONFIG["MOZ_WMF"]:
    DIRS += ["wmf"]

if CONFIG["MOZ_FFVPX"] or CONFIG["MOZ_FFMPEG"]:
    # common code to either FFmpeg or FFVPX
    EXPORTS += [
        "ffmpeg/FFmpegRDFTTypes.h",
    ]
    UNIFIED_SOURCES += [
        "ffmpeg/FFmpegLibWrapper.cpp",
    ]

if CONFIG["MOZ_FFVPX"]:
    DIRS += [
        "ffmpeg/ffvpx",
    ]

if CONFIG["MOZ_FFMPEG"]:
    DIRS += [
        "ffmpeg",
    ]

if CONFIG["MOZ_AV1"]:
    EXPORTS += [
        "agnostic/AOMDecoder.h",
        "agnostic/DAV1DDecoder.h",
    ]
    UNIFIED_SOURCES += [
        "agnostic/AOMDecoder.cpp",
        "agnostic/DAV1DDecoder.cpp",
    ]

if CONFIG["MOZ_OMX"]:
    EXPORTS += [
        "omx/OmxCoreLibLinker.h",
    ]
    UNIFIED_SOURCES += [
        "omx/OmxCoreLibLinker.cpp",
    ]

if CONFIG["MOZ_APPLEMEDIA"]:
    EXPORTS += [
        "apple/AppleDecoderModule.h",
        "apple/AppleEncoderModule.h",
    ]
    UNIFIED_SOURCES += [
        "apple/AppleATDecoder.cpp",
        "apple/AppleDecoderModule.cpp",
        "apple/AppleEncoderModule.cpp",
        "apple/AppleVTDecoder.cpp",
        "apple/AppleVTEncoder.cpp",
    ]
    LOCAL_INCLUDES += [
        "/media/libyuv/libyuv/include",
    ]
    OS_LIBS += [
        "-framework AudioToolbox",
        "-framework CoreMedia",
        "-framework VideoToolbox",
        # For some unknown reason, the documented method of using weak_import
        # attribute doesn't work with VideoToolbox's functions.
        # We want to lazily load _VTRegisterSupplementalVideoDecoderIfAvailable
        # symbol as it's only available in macOS 11 and later.
        "-Wl,-U,_VTRegisterSupplementalVideoDecoderIfAvailable",
        # Same for VTIsHardwareDecodeSupported available from macOS 10.13.
        "-Wl,-U,_VTIsHardwareDecodeSupported",
    ]

include("/ipc/chromium/chromium-config.mozbuild")

if CONFIG["MOZ_WIDGET_TOOLKIT"] == "android":
    EXPORTS += [
        "android/AndroidDecoderModule.h",
        "android/AndroidEncoderModule.h",
        "android/JavaCallbacksSupport.h",
    ]
    UNIFIED_SOURCES += [
        "android/AndroidDataEncoder.cpp",
        "android/AndroidDecoderModule.cpp",
        "android/AndroidEncoderModule.cpp",
        "android/RemoteDataDecoder.cpp",
    ]
    LOCAL_INCLUDES += [
        "/media/libyuv/libyuv/include",
    ]

FINAL_LIBRARY = "xul"

# Add libFuzzer configuration directives
include("/tools/fuzzing/libfuzzer-config.mozbuild")