mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-03 17:58:55 +02:00 
			
		
		
		
	This look like it's missing quite a few methods, but this is because the code is shared and mostly identical in behaviour to the VideoEncoder class -- the AudioEncoder class only implements the bits of behaviour that are audio-specific. The audio-specific adjustments to the base class (which are not numerous) are in the next patch of this series. Differential Revision: https://phabricator.services.mozilla.com/D199519
		
			
				
	
	
		
			62 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- 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/.
 | 
						|
 | 
						|
with Files("*"):
 | 
						|
    BUG_COMPONENT = ("Core", "Audio/Video: Web Codecs")
 | 
						|
 | 
						|
MOCHITEST_MANIFESTS += ["test/mochitest.toml"]
 | 
						|
CRASHTEST_MANIFESTS += ["crashtests/crashtests.list"]
 | 
						|
 | 
						|
# For mozilla/layers/ImageBridgeChild.h
 | 
						|
LOCAL_INCLUDES += [
 | 
						|
    "!/ipc/ipdl/_ipdlheaders",
 | 
						|
    "/ipc/chromium/src/",
 | 
						|
]
 | 
						|
 | 
						|
EXPORTS.mozilla += [
 | 
						|
    "DecoderAgent.h",
 | 
						|
]
 | 
						|
 | 
						|
EXPORTS.mozilla.dom += [
 | 
						|
    "AudioData.h",
 | 
						|
    "AudioDecoder.h",
 | 
						|
    "AudioEncoder.h",
 | 
						|
    "DecoderTemplate.h",
 | 
						|
    "DecoderTypes.h",
 | 
						|
    "EncodedAudioChunk.h",
 | 
						|
    "EncodedVideoChunk.h",
 | 
						|
    "EncoderAgent.h",
 | 
						|
    "EncoderTemplate.h",
 | 
						|
    "EncoderTypes.h",
 | 
						|
    "VideoColorSpace.h",
 | 
						|
    "VideoDecoder.h",
 | 
						|
    "VideoEncoder.h",
 | 
						|
    "VideoFrame.h",
 | 
						|
    "WebCodecsUtils.h",
 | 
						|
]
 | 
						|
 | 
						|
UNIFIED_SOURCES += [
 | 
						|
    "AudioData.cpp",
 | 
						|
    "AudioDecoder.cpp",
 | 
						|
    "AudioEncoder.cpp",
 | 
						|
    "DecoderAgent.cpp",
 | 
						|
    "DecoderTemplate.cpp",
 | 
						|
    "EncodedAudioChunk.cpp",
 | 
						|
    "EncodedVideoChunk.cpp",
 | 
						|
    "EncoderAgent.cpp",
 | 
						|
    "EncoderTemplate.cpp",
 | 
						|
    "VideoColorSpace.cpp",
 | 
						|
    "VideoDecoder.cpp",
 | 
						|
    "VideoEncoder.cpp",
 | 
						|
    "VideoFrame.cpp",
 | 
						|
    "WebCodecsUtils.cpp",
 | 
						|
]
 | 
						|
 | 
						|
if CONFIG["MOZ_WAYLAND"]:
 | 
						|
    CXXFLAGS += CONFIG["MOZ_WAYLAND_CFLAGS"]
 | 
						|
    CFLAGS += CONFIG["MOZ_WAYLAND_CFLAGS"]
 | 
						|
 | 
						|
FINAL_LIBRARY = "xul"
 |