mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6a6aa3a1ea
This is an integrated patch which includes: 1. Bug 891705: [MediaEncoder] Implement WebM 1.0 container writer. r=giles, r=gps 2. Bug 950567: [MediaEncoder] Phase-in libmkv library. r=giles 3. bug 883749: Implement Vorbis encoding. r=rillian 4. bug 881840: Implement VP8 track encoder. r=rillian
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
PARALLEL_DIRS += ['fmp4_muxer']
|
|
|
|
EXPORTS += [
|
|
'ContainerWriter.h',
|
|
'EncodedFrameContainer.h',
|
|
'MediaEncoder.h',
|
|
'TrackEncoder.h',
|
|
'TrackMetadataBase.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'MediaEncoder.cpp',
|
|
'TrackEncoder.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_OMX_ENCODER']:
|
|
EXPORTS += ['OmxTrackEncoder.h']
|
|
UNIFIED_SOURCES += ['OmxTrackEncoder.cpp']
|
|
|
|
if CONFIG['MOZ_OPUS']:
|
|
EXPORTS += ['OpusTrackEncoder.h']
|
|
UNIFIED_SOURCES += ['OpusTrackEncoder.cpp']
|
|
|
|
if CONFIG['MOZ_WEBM_ENCODER']:
|
|
EXPORTS += ['VorbisTrackEncoder.h',
|
|
'VP8TrackEncoder.h',
|
|
]
|
|
UNIFIED_SOURCES += ['VorbisTrackEncoder.cpp',
|
|
'VP8TrackEncoder.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
FINAL_LIBRARY = 'gklayout'
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|