mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
1453f13d33
440 changed files with 4353 additions and 3378 deletions
|
|
@ -11,6 +11,7 @@
|
|||
#include "PDMFactory.h"
|
||||
#include "WebMDemuxer.h"
|
||||
#include "mozilla/Preferences.h"
|
||||
#include "mozilla/SharedThreadPool.h"
|
||||
#include "mozilla/dom/ContentChild.h"
|
||||
|
||||
#ifndef MOZ_WIDGET_ANDROID
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#include "gfxPlatform.h"
|
||||
#include "ImageContainer.h"
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "MediaStreamListener.h"
|
||||
#include "mozilla/dom/CanvasCaptureMediaStreamBinding.h"
|
||||
#include "mozilla/gfx/2D.h"
|
||||
#include "mozilla/Atomics.h"
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@
|
|||
#include "nsDebug.h"
|
||||
#include "nsString.h"
|
||||
#include "mozilla/Preferences.h"
|
||||
#include "mozilla/Services.h"
|
||||
#include "mozilla/Sprintf.h"
|
||||
#include "mozilla/StaticMutex.h"
|
||||
#include "mozilla/StaticPtr.h"
|
||||
#include "mozilla/Telemetry.h"
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#include "mozilla/dom/MediaStreamTrackEvent.h"
|
||||
#include "mozilla/dom/LocalMediaStreamBinding.h"
|
||||
#include "mozilla/dom/AudioNode.h"
|
||||
#include "AudioCaptureStream.h"
|
||||
#include "AudioChannelAgent.h"
|
||||
#include "mozilla/dom/AudioTrack.h"
|
||||
#include "mozilla/dom/AudioTrackList.h"
|
||||
|
|
@ -22,6 +23,7 @@
|
|||
#include "mozilla/dom/HTMLCanvasElement.h"
|
||||
#include "mozilla/media/MediaUtils.h"
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "MediaStreamListener.h"
|
||||
#include "AudioStreamTrack.h"
|
||||
#include "VideoStreamTrack.h"
|
||||
#include "Layers.h"
|
||||
|
|
|
|||
|
|
@ -784,6 +784,13 @@ MediaDecoder::CallSeek(const SeekTarget& aTarget, dom::Promise* aPromise)
|
|||
&MediaDecoder::OnSeekResolved, &MediaDecoder::OnSeekRejected));
|
||||
}
|
||||
|
||||
// GetCurrentTime is defined in winbase.h as a zero argument macro forwarding to
|
||||
// GetTickCount(), which conflicts with the MediaDecoder::GetCurrentTime
|
||||
// implementation here. Clear the macro.
|
||||
#ifdef GetCurrentTime
|
||||
#undef GetCurrentTime
|
||||
#endif
|
||||
|
||||
double
|
||||
MediaDecoder::GetCurrentTime()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#include "nsPrintfCString.h"
|
||||
#include "mozilla/mozalloc.h"
|
||||
#include "mozilla/Mutex.h"
|
||||
#include "mozilla/SharedThreadPool.h"
|
||||
#include <stdint.h>
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@
|
|||
#ifndef MOZILLA_MEDIASTREAMLISTENER_h_
|
||||
#define MOZILLA_MEDIASTREAMLISTENER_h_
|
||||
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "StreamTracks.h"
|
||||
#include "MediaStreamGraph.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,10 @@
|
|||
|
||||
#include "DOMMediaStream.h"
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsIUUIDGenerator.h"
|
||||
#include "nsServiceManagerUtils.h"
|
||||
#include "MediaStreamError.h"
|
||||
#include "MediaStreamListener.h"
|
||||
#include "systemservices/MediaUtils.h"
|
||||
|
||||
|
|
@ -21,6 +23,8 @@
|
|||
static mozilla::LazyLogModule gMediaStreamTrackLog("MediaStreamTrack");
|
||||
#define LOG(type, msg) MOZ_LOG(gMediaStreamTrackLog, type, msg)
|
||||
|
||||
using namespace mozilla::media;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
|
||||
|
|
|
|||
|
|
@ -36,9 +36,11 @@
|
|||
#include "mozilla/ClearOnShutdown.h"
|
||||
#include "nsUnicharUtils.h"
|
||||
#include "mozilla/dom/MediaSource.h"
|
||||
#include "DecoderTraits.h"
|
||||
#ifdef MOZ_WIDGET_ANDROID
|
||||
#include "FennecJNIWrappers.h"
|
||||
#endif
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ EXPORTS.mozilla += [
|
|||
'MediaDrmProxySupport.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'MediaDrmCDMCallbackProxy.cpp',
|
||||
'MediaDrmCDMProxy.cpp',
|
||||
'MediaDrmProxySupport.cpp',
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ EXPORTS.mozilla += [
|
|||
'EMEUtils.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'CDMCaps.cpp',
|
||||
'DetailedPromise.cpp',
|
||||
'EMEUtils.cpp',
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
/* 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/. */
|
||||
|
||||
#include "OpusTrackEncoder.h"
|
||||
#include "VideoUtils.h"
|
||||
#include "nsString.h"
|
||||
#include "GeckoProfiler.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ EXPORTS += [
|
|||
'TrackMetadataBase.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'MediaEncoder.cpp',
|
||||
'OpusTrackEncoder.cpp',
|
||||
'TrackEncoder.cpp',
|
||||
|
|
@ -25,8 +25,10 @@ UNIFIED_SOURCES += [
|
|||
if CONFIG['MOZ_WEBM_ENCODER']:
|
||||
EXPORTS += ['VP8TrackEncoder.h',
|
||||
]
|
||||
UNIFIED_SOURCES += ['VP8TrackEncoder.cpp',
|
||||
|
||||
SOURCES += ['VP8TrackEncoder.cpp',
|
||||
]
|
||||
|
||||
LOCAL_INCLUDES += ['/media/libyuv/include']
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
|
|
|||
|
|
@ -33,14 +33,6 @@ namespace flac {
|
|||
// flac::FrameHeader - Holds the flac frame header and its parsing
|
||||
// state.
|
||||
|
||||
#define FLAC_MAX_CHANNELS 8
|
||||
#define FLAC_MIN_BLOCKSIZE 16
|
||||
#define FLAC_MAX_BLOCKSIZE 65535
|
||||
#define FLAC_MIN_FRAME_SIZE 11
|
||||
#define FLAC_MAX_FRAME_HEADER_SIZE 16
|
||||
#define FLAC_MAX_FRAME_SIZE (FLAC_MAX_FRAME_HEADER_SIZE \
|
||||
+FLAC_MAX_BLOCKSIZE*FLAC_MAX_CHANNELS*3)
|
||||
|
||||
class FrameHeader {
|
||||
public:
|
||||
const AudioInfo& Info() const { return mInfo; }
|
||||
|
|
|
|||
|
|
@ -13,6 +13,15 @@
|
|||
namespace mozilla {
|
||||
|
||||
namespace flac {
|
||||
|
||||
#define FLAC_MAX_CHANNELS 8
|
||||
#define FLAC_MIN_BLOCKSIZE 16
|
||||
#define FLAC_MAX_BLOCKSIZE 65535
|
||||
#define FLAC_MIN_FRAME_SIZE 11
|
||||
#define FLAC_MAX_FRAME_HEADER_SIZE 16
|
||||
#define FLAC_MAX_FRAME_SIZE (FLAC_MAX_FRAME_HEADER_SIZE \
|
||||
+FLAC_MAX_BLOCKSIZE*FLAC_MAX_CHANNELS*3)
|
||||
|
||||
class Frame;
|
||||
class FrameParser;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include "FlacFrameParser.h"
|
||||
#include "mp4_demuxer/ByteReader.h"
|
||||
#include "nsTArray.h"
|
||||
#include "FlacDemuxer.h"
|
||||
#include "OggCodecState.h"
|
||||
#include "OpusParser.h"
|
||||
#include "VideoUtils.h"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ EXPORTS += [
|
|||
'FlacFrameParser.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'FlacDecoder.cpp',
|
||||
'FlacDemuxer.cpp',
|
||||
'FlacFrameParser.cpp',
|
||||
|
|
|
|||
|
|
@ -10,13 +10,10 @@ EXPORTS += [
|
|||
'MP4Stream.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'MP4Decoder.cpp',
|
||||
'MP4Demuxer.cpp',
|
||||
'MP4Stream.cpp',
|
||||
]
|
||||
|
||||
SOURCES += [
|
||||
'MP4Demuxer.cpp',
|
||||
]
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
|
|
|||
|
|
@ -4,7 +4,9 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "GMPDecryptorParent.h"
|
||||
|
||||
#include "GMPContentParent.h"
|
||||
#include "GMPUtils.h"
|
||||
#include "MediaData.h"
|
||||
#include "mozilla/Unused.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@
|
|||
#include "nsCOMPtr.h"
|
||||
#include "nsLiteralString.h"
|
||||
#include "nsCRTGlue.h"
|
||||
#include "mozIGeckoMediaPluginService.h"
|
||||
#include "mozilla/Base64.h"
|
||||
#include "nsISimpleEnumerator.h"
|
||||
#include "prio.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ if CONFIG['OS_TARGET'] == 'Android':
|
|||
'rlz',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'GMPAudioDecoderChild.cpp',
|
||||
'GMPAudioDecoderParent.cpp',
|
||||
'GMPAudioHost.cpp',
|
||||
|
|
|
|||
|
|
@ -15,24 +15,6 @@
|
|||
|
||||
namespace mozilla {
|
||||
|
||||
class CaptureTask::MediaStreamEventListener : public MediaStreamTrackListener
|
||||
{
|
||||
public:
|
||||
explicit MediaStreamEventListener(CaptureTask* aCaptureTask)
|
||||
: mCaptureTask(aCaptureTask) {};
|
||||
|
||||
// MediaStreamListener methods.
|
||||
void NotifyEnded() override
|
||||
{
|
||||
if(!mCaptureTask->mImageGrabbedOrTrackEnd) {
|
||||
mCaptureTask->PostTrackEndEvent();
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
CaptureTask* mCaptureTask;
|
||||
};
|
||||
|
||||
CaptureTask::CaptureTask(dom::ImageCapture* aImageCapture)
|
||||
: mImageCapture(aImageCapture)
|
||||
, mEventListener(new MediaStreamEventListener(this))
|
||||
|
|
|
|||
|
|
@ -86,6 +86,24 @@ protected:
|
|||
bool mPrincipalChanged;
|
||||
};
|
||||
|
||||
class CaptureTask::MediaStreamEventListener : public MediaStreamTrackListener
|
||||
{
|
||||
public:
|
||||
explicit MediaStreamEventListener(CaptureTask* aCaptureTask)
|
||||
: mCaptureTask(aCaptureTask) {};
|
||||
|
||||
// MediaStreamListener methods.
|
||||
void NotifyEnded() override
|
||||
{
|
||||
if(!mCaptureTask->mImageGrabbedOrTrackEnd) {
|
||||
mCaptureTask->PostTrackEndEvent();
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
CaptureTask* mCaptureTask;
|
||||
};
|
||||
|
||||
} // namespace mozilla
|
||||
|
||||
#endif // CAPTURETASK_H
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ EXPORTS.mozilla.dom += [
|
|||
'ImageCapture.h'
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'CaptureTask.cpp',
|
||||
'ImageCapture.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#include "VideoSegment.h"
|
||||
#include "VideoUtils.h"
|
||||
|
||||
#include "nsPrintfCString.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
#undef DUMP_LOG
|
||||
|
|
|
|||
|
|
@ -4,9 +4,11 @@
|
|||
* 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/. */
|
||||
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "MediaQueue.h"
|
||||
#include "VideoSink.h"
|
||||
#include "MediaPrefs.h"
|
||||
#include "nsPrintfCString.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'AudioSinkWrapper.cpp',
|
||||
'DecodedAudioDataSink.cpp',
|
||||
'DecodedStream.cpp',
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ using media::TimeUnit;
|
|||
using media::TimeInterval;
|
||||
using media::TimeIntervals;
|
||||
typedef SourceBufferTask::AppendBufferResult AppendBufferResult;
|
||||
typedef SourceBufferAttributes::AppendState AppendState;
|
||||
|
||||
static const char*
|
||||
AppendStateToStr(SourceBufferAttributes::AppendState aState)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ EXPORTS.mozilla.dom += [
|
|||
'SourceBufferList.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'ContainerParser.cpp',
|
||||
'MediaSource.cpp',
|
||||
'MediaSourceDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ EXPORTS.mozilla.dom += [
|
|||
'VideoTrackList.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'AccurateSeekTask.cpp',
|
||||
'ADTSDecoder.cpp',
|
||||
'ADTSDemuxer.cpp',
|
||||
|
|
@ -199,6 +199,7 @@ UNIFIED_SOURCES += [
|
|||
'CanvasCaptureMediaStream.cpp',
|
||||
'CubebUtils.cpp',
|
||||
'DecoderDoctorDiagnostics.cpp',
|
||||
'DecoderTraits.cpp',
|
||||
'DOMMediaStream.cpp',
|
||||
'EncodedBufferCache.cpp',
|
||||
'FileBlockCache.cpp',
|
||||
|
|
@ -254,11 +255,6 @@ UNIFIED_SOURCES += [
|
|||
if CONFIG['OS_TARGET'] == 'WINNT':
|
||||
SOURCES += [ 'ThreadPoolCOMListener.cpp' ]
|
||||
|
||||
# DecoderTraits.cpp needs to be built separately because of Mac OS X headers.
|
||||
SOURCES += [
|
||||
'DecoderTraits.cpp',
|
||||
]
|
||||
|
||||
# Some codec-related code uses multi-character constants, which GCC and clang
|
||||
# warn about. Suppress turning this warning into an error.
|
||||
if CONFIG['GNU_CC'] or CONFIG['CLANG_CL']:
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ EXPORTS += [
|
|||
'MP3Demuxer.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'MP3Decoder.cpp',
|
||||
'MP3Demuxer.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@
|
|||
#include <algorithm>
|
||||
|
||||
extern mozilla::LazyLogModule gMediaDemuxerLog;
|
||||
#define LOG(type, msg) MOZ_LOG(gMediaDecoderLog, type, msg)
|
||||
#define OGG_DEBUG(arg, ...) MOZ_LOG(gMediaDemuxerLog, mozilla::LogLevel::Debug, ("OggDemuxer(%p)::%s: " arg, this, __func__, ##__VA_ARGS__))
|
||||
|
||||
// Un-comment to enable logging of seek bisections.
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ EXPORTS += [
|
|||
'OpusParser.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'OggCodecState.cpp',
|
||||
'OggCodecStore.cpp',
|
||||
'OggDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#if !defined(PlatformDecoderModule_h_)
|
||||
#define PlatformDecoderModule_h_
|
||||
|
||||
#include "DecoderDoctorDiagnostics.h"
|
||||
#include "MediaDecoderReader.h"
|
||||
#include "MediaInfo.h"
|
||||
#include "mozilla/MozPromise.h"
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
#include "nsError.h"
|
||||
#include "TimeUnits.h"
|
||||
#include "mozilla/PodOperations.h"
|
||||
#include "mozilla/SyncRunnable.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ EXPORTS += [
|
|||
'SamplesWaitingForKey.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'EMEAudioDecoder.cpp',
|
||||
'EMEDecoderModule.cpp',
|
||||
'EMEVideoDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
#include "prsystem.h"
|
||||
#include "MediaData.h"
|
||||
#include "GMPDecoderModule.h"
|
||||
#include "MP4Decoder.h"
|
||||
#include "VPXDecoder.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ EXPORTS += [
|
|||
'MediaDataDecoderProxy.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'GMPAudioDecoder.cpp',
|
||||
'GMPDecoderModule.cpp',
|
||||
'GMPVideoDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@
|
|||
#include <dlfcn.h>
|
||||
|
||||
#include "AppleCMLinker.h"
|
||||
#include "PlatformDecoderModule.h"
|
||||
#include "mozilla/ArrayUtils.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "nsDebug.h"
|
||||
|
||||
#define LOG(...) MOZ_LOG(sPDMLog, mozilla::LogLevel::Debug, (__VA_ARGS__))
|
||||
|
|
|
|||
|
|
@ -11,12 +11,15 @@
|
|||
#include "AppleUtils.h"
|
||||
#include "AppleVTDecoder.h"
|
||||
#include "AppleVTLinker.h"
|
||||
#include "MacIOSurfaceImage.h"
|
||||
#include "MediaData.h"
|
||||
#include "mozilla/ArrayUtils.h"
|
||||
#include "mp4_demuxer/H264.h"
|
||||
#include "nsAutoPtr.h"
|
||||
#include "nsThreadUtils.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "mozilla/SyncRunnable.h"
|
||||
#include "mozilla/gfx/MacIOSurface.h"
|
||||
#include "VideoUtils.h"
|
||||
#include "gfxPlatform.h"
|
||||
|
||||
|
|
@ -360,7 +363,7 @@ AppleVTDecoder::OutputFrame(CVPixelBufferRef aImage,
|
|||
|
||||
RefPtr<MacIOSurface> macSurface = new MacIOSurface(surface);
|
||||
|
||||
RefPtr<layers::Image> image = new MacIOSurfaceImage(macSurface);
|
||||
RefPtr<layers::Image> image = new layers::MacIOSurfaceImage(macSurface);
|
||||
|
||||
data =
|
||||
VideoData::CreateFromImage(info,
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@
|
|||
#include <dlfcn.h>
|
||||
|
||||
#include "AppleVTLinker.h"
|
||||
#include "PlatformDecoderModule.h"
|
||||
#include "mozilla/ArrayUtils.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "nsDebug.h"
|
||||
|
||||
#define LOG(...) MOZ_LOG(sPDMLog, mozilla::LogLevel::Debug, (__VA_ARGS__))
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
#include "FFmpegLog.h"
|
||||
#include "MediaPrefs.h"
|
||||
#include "mozilla/PodOperations.h"
|
||||
#include "prsystem.h" // for PR_GetNumberOfProcessors
|
||||
|
||||
#include "libavutil/pixfmt.h"
|
||||
#if LIBAVCODEC_VERSION_MAJOR < 54
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ EXPORTS += [
|
|||
'FFVPXRuntimeLinker.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../FFmpegAudioDecoder.cpp',
|
||||
'../FFmpegDataDecoder.cpp',
|
||||
'../FFmpegDecoderModule.cpp',
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ DIRS += [
|
|||
'ffmpeg58',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'FFmpegRuntimeLinker.cpp',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ EXPORTS += [
|
|||
'wrappers/H264Converter.h'
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'agnostic/AgnosticDecoderModule.cpp',
|
||||
'agnostic/BlankDecoderModule.cpp',
|
||||
'agnostic/OpusDecoder.cpp',
|
||||
|
|
@ -40,7 +40,7 @@ if CONFIG['MOZ_WMF']:
|
|||
|
||||
if CONFIG['MOZ_FFVPX'] or CONFIG['MOZ_FFMPEG']:
|
||||
# common code to either FFmpeg or FFVPX
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'ffmpeg/FFmpegLibWrapper.cpp',
|
||||
]
|
||||
|
||||
|
|
@ -58,7 +58,7 @@ if CONFIG['MOZ_AV1']:
|
|||
EXPORTS += [
|
||||
'agnostic/AOMDecoder.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'agnostic/AOMDecoder.cpp',
|
||||
]
|
||||
|
||||
|
|
@ -66,7 +66,7 @@ if CONFIG['MOZ_APPLEMEDIA']:
|
|||
EXPORTS += [
|
||||
'apple/AppleDecoderModule.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'apple/AppleATDecoder.cpp',
|
||||
'apple/AppleCMLinker.cpp',
|
||||
'apple/AppleDecoderModule.cpp',
|
||||
|
|
@ -83,7 +83,7 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|||
EXPORTS += [
|
||||
'android/AndroidDecoderModule.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'android/AndroidDecoderModule.cpp',
|
||||
'android/MediaCodecDataDecoder.cpp',
|
||||
'android/RemoteDataDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
#include "OmxPlatformLayer.h"
|
||||
|
||||
#include "OmxDataDecoder.h"
|
||||
|
||||
#include "OMX_VideoExt.h" // For VP8.
|
||||
|
||||
#include "VPXDecoder.h"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#if !defined(OmxPlatformLayer_h_)
|
||||
#define OmxPlatformLayer_h_
|
||||
|
||||
#include "OMX_Component.h"
|
||||
#include "OMX_Core.h"
|
||||
#include "OMX_Types.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ EXPORTS += [
|
|||
'OmxDecoderModule.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'OmxDataDecoder.cpp',
|
||||
'OmxDecoderModule.cpp',
|
||||
'OmxPlatformLayer.cpp',
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ EXPORTS += [
|
|||
'WMFUtils.h',
|
||||
'WMFVideoMFTManager.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'DXVA2Manager.cpp',
|
||||
'MFTDecoder.cpp',
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
#include "FuzzingWrapper.h"
|
||||
|
||||
#include "mozilla/SharedThreadPool.h"
|
||||
|
||||
mozilla::LogModule* GetFuzzingWrapperLog() {
|
||||
static mozilla::LazyLogModule log("MediaFuzzingWrapper");
|
||||
return log;
|
||||
|
|
|
|||
|
|
@ -6,9 +6,11 @@
|
|||
|
||||
#include "mozilla/TaskQueue.h"
|
||||
|
||||
#include "DecoderDoctorDiagnostics.h"
|
||||
#include "H264Converter.h"
|
||||
#include "ImageContainer.h"
|
||||
#include "MediaInfo.h"
|
||||
#include "PDMFactory.h"
|
||||
#include "mp4_demuxer/AnnexB.h"
|
||||
#include "mp4_demuxer/H264.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
if CONFIG['OS_TARGET'] != 'WINNT':
|
||||
Library('media_standalone')
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'../AudioChannelFormat.cpp',
|
||||
'../AudioSegment.cpp',
|
||||
'../SimpleImageBuffer.cpp',
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#include "nsAppDirectoryServiceDefs.h"
|
||||
#include "nsISupportsImpl.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "mozilla/MediaManager.h"
|
||||
|
||||
#undef LOG
|
||||
mozilla::LazyLogModule gMediaParentLog("MediaParent");
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include "mozilla/TaskQueue.h"
|
||||
|
||||
#include "gfxPrefs.h"
|
||||
#include "MediaSystemResourceClient.h"
|
||||
#include "MediaSystemResourceManagerChild.h"
|
||||
#include "mozilla/layers/ImageBridgeChild.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
'LoadManagerFactory.h',
|
||||
'LoadMonitor.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'CamerasChild.cpp',
|
||||
'CamerasParent.cpp',
|
||||
'LoadManager.cpp',
|
||||
|
|
@ -24,6 +24,7 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
'/media/webrtc/signaling',
|
||||
'/media/webrtc/trunk',
|
||||
]
|
||||
|
||||
if CONFIG['OS_TARGET'] == 'WINNT':
|
||||
DEFINES['WEBRTC_WIN'] = True
|
||||
else:
|
||||
|
|
@ -34,12 +35,12 @@ if CONFIG['OS_TARGET'] == 'Android':
|
|||
EXPORTS += [
|
||||
'OpenSLESProvider.h'
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'OpenSLESProvider.cpp',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
||||
UNIFIED_SOURCES += ['OSXRunLoopSingleton.cpp']
|
||||
SOURCES += ['OSXRunLoopSingleton.cpp']
|
||||
EXPORTS += ['OSXRunLoopSingleton.h']
|
||||
|
||||
if CONFIG['_MSC_VER']:
|
||||
|
|
@ -66,7 +67,8 @@ EXPORTS.mozilla.media += ['CamerasTypes.h',
|
|||
'MediaTaskUtils.h',
|
||||
'MediaUtils.h',
|
||||
]
|
||||
UNIFIED_SOURCES += [
|
||||
|
||||
SOURCES += [
|
||||
'MediaChild.cpp',
|
||||
'MediaParent.cpp',
|
||||
'MediaSystemResourceClient.cpp',
|
||||
|
|
@ -76,11 +78,13 @@ UNIFIED_SOURCES += [
|
|||
'MediaSystemResourceService.cpp',
|
||||
'MediaUtils.cpp',
|
||||
]
|
||||
|
||||
IPDL_SOURCES += [
|
||||
'PCameras.ipdl',
|
||||
'PMedia.ipdl',
|
||||
'PMediaSystemResourceManager.ipdl',
|
||||
]
|
||||
|
||||
# /dom/base needed for nsGlobalWindow.h in MediaChild.cpp
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/base',
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ EXPORTS += [
|
|||
'WaveDemuxer.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'WaveDecoder.cpp',
|
||||
'WaveDemuxer.cpp',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
#include "AudioChannelService.h"
|
||||
#include "AudioDestinationNode.h"
|
||||
#include "AudioListener.h"
|
||||
#include "AudioNodeStream.h"
|
||||
#include "AudioStream.h"
|
||||
#include "BiquadFilterNode.h"
|
||||
#include "ChannelMergerNode.h"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
#include "AudioDestinationNode.h"
|
||||
#include "AlignmentUtils.h"
|
||||
#include "AudioContext.h"
|
||||
#include "mozilla/dom/AudioContextBinding.h"
|
||||
#include "mozilla/dom/AudioDestinationNodeBinding.h"
|
||||
#include "mozilla/dom/ScriptSettings.h"
|
||||
#include "mozilla/Services.h"
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#include "mozilla/PodOperations.h"
|
||||
|
||||
#include "MainThreadUtils.h"
|
||||
#include "MediaStreamGraph.h"
|
||||
#include "nsTArray.h"
|
||||
#include "math.h"
|
||||
#include "WebAudioUtils.h"
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#include "AlignmentUtils.h"
|
||||
#include "AudioNodeEngineSSE2.h"
|
||||
#endif
|
||||
#include "AudioBlock.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "AudioNodeStream.h"
|
||||
|
||||
#include "AlignmentUtils.h"
|
||||
#include "MediaStreamGraphImpl.h"
|
||||
#include "MediaStreamListener.h"
|
||||
#include "AudioNodeEngine.h"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
#include "ConstantSourceNode.h"
|
||||
|
||||
#include "AudioDestinationNode.h"
|
||||
#include "AudioNodeEngine.h"
|
||||
#include "AudioNodeStream.h"
|
||||
#include "nsContentUtils.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#define DelayBuffer_h_
|
||||
|
||||
#include "nsTArray.h"
|
||||
#include "AudioBlock.h"
|
||||
#include "AudioSegment.h"
|
||||
#include "mozilla/dom/AudioNodeBinding.h" // for ChannelInterpretation
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,13 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "IIRFilterNode.h"
|
||||
#include "AlignmentUtils.h"
|
||||
#include "AudioBlock.h"
|
||||
#include "AudioNodeEngine.h"
|
||||
#include "AudioNodeStream.h"
|
||||
#include "AudioDestinationNode.h"
|
||||
#include "PlayingRefChangeHandler.h"
|
||||
#include "mozilla/dom/AudioDestinationNodeBinding.h"
|
||||
|
||||
#include "blink/IIRFilter.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
#include "DecoderTraits.h"
|
||||
#include "AudioContext.h"
|
||||
#include "AudioBuffer.h"
|
||||
#include "AudioNodeEngine.h"
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsIScriptObjectPrincipal.h"
|
||||
#include "nsIScriptError.h"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,9 @@
|
|||
#include "AudioNodeEngine.h"
|
||||
#include "AudioNodeExternalInputStream.h"
|
||||
#include "AudioStreamTrack.h"
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsIDocument.h"
|
||||
#include "nsIScriptError.h"
|
||||
#include "mozilla/CORSMode.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "WebAudioUtils.h"
|
||||
#include "AudioEventTimeline.h"
|
||||
#include "AudioNodeStream.h"
|
||||
#include "blink/HRTFDatabaseLoader.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ EXPORTS.mozilla.dom += [
|
|||
'WaveShaperNode.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'AnalyserNode.cpp',
|
||||
'AudioBlock.cpp',
|
||||
'AudioBuffer.cpp',
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ EXPORTS += [
|
|||
'WebMDemuxer.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'WebMBufferedParser.cpp',
|
||||
'WebMDecoder.cpp',
|
||||
'WebMDemuxer.cpp',
|
||||
|
|
@ -19,8 +19,10 @@ UNIFIED_SOURCES += [
|
|||
|
||||
if CONFIG['MOZ_WEBM_ENCODER']:
|
||||
EXPORTS += ['WebMWriter.h']
|
||||
UNIFIED_SOURCES += ['EbmlComposer.cpp',
|
||||
'WebMWriter.cpp',
|
||||
|
||||
SOURCES += [
|
||||
'EbmlComposer.cpp',
|
||||
'WebMWriter.cpp',
|
||||
]
|
||||
|
||||
CXXFLAGS += CONFIG['MOZ_LIBVPX_CFLAGS']
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
#include "MediaEngineRemoteVideoSource.h"
|
||||
|
||||
#include "mozilla/RefPtr.h"
|
||||
#include "Layers.h"
|
||||
#include "VideoUtils.h"
|
||||
#include "nsIPrefService.h"
|
||||
#include "MediaTrackConstraints.h"
|
||||
|
|
@ -15,6 +16,8 @@ extern mozilla::LogModule* GetMediaManagerLog();
|
|||
#define LOG(msg) MOZ_LOG(GetMediaManagerLog(), mozilla::LogLevel::Debug, msg)
|
||||
#define LOGFRAME(msg) MOZ_LOG(GetMediaManagerLog(), mozilla::LogLevel::Verbose, msg)
|
||||
|
||||
typedef mozilla::gfx::IntSize IntSize;
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
// These need a definition somewhere because template
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
namespace mozilla {
|
||||
|
||||
using namespace mozilla::gfx;
|
||||
using namespace mozilla::dom;
|
||||
|
||||
NS_IMPL_ISUPPORTS(MediaEngineTabVideoSource, nsIDOMEventListener, nsITimerCallback)
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
#include "MediaTrackConstraints.h"
|
||||
#include "mtransport/runnable_utils.h"
|
||||
#include "nsAutoPtr.h"
|
||||
#include "nsContentUtils.h"
|
||||
|
||||
// scoped_ptr.h uses FF
|
||||
#ifdef FF
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "MediaTrackConstraints.h"
|
||||
#include "mozilla/dom/MediaStreamTrackBinding.h"
|
||||
#include "mozilla/Unused.h"
|
||||
|
||||
#include <limits>
|
||||
#include <algorithm>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,8 @@
|
|||
#include "nsStringAPI.h"
|
||||
#endif
|
||||
|
||||
#include "mozilla/RefCounted.h"
|
||||
|
||||
template <class T> class nsCOMPtr;
|
||||
class nsIIDNService;
|
||||
|
||||
|
|
|
|||
|
|
@ -31,15 +31,14 @@ if CONFIG['MOZ_WEBRTC']:
|
|||
UNIFIED_SOURCES += [
|
||||
'MediaEngineCameraVideoSource.cpp',
|
||||
'MediaEngineRemoteVideoSource.cpp',
|
||||
]
|
||||
SOURCES += [
|
||||
'MediaEngineTabVideoSource.cpp',
|
||||
'MediaEngineWebRTC.cpp',
|
||||
'MediaEngineWebRTCAudio.cpp',
|
||||
'RTCCertificate.cpp',
|
||||
'RTCIdentityProviderRegistrar.cpp',
|
||||
]
|
||||
# MediaEngineWebRTC.cpp needs to be built separately.
|
||||
SOURCES += [
|
||||
'MediaEngineWebRTC.cpp',
|
||||
]
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/base',
|
||||
'/media/libyuv/include',
|
||||
|
|
@ -53,8 +52,10 @@ XPIDL_SOURCES += [
|
|||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'MediaEngineDefault.cpp',
|
||||
'MediaTrackConstraints.cpp',
|
||||
]
|
||||
SOURCES += [
|
||||
'MediaEngineDefault.cpp',
|
||||
'PeerIdentity.cpp',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
#include "mozilla/ErrorResult.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsXPCOMStrings.h"
|
||||
#include "SpeechGrammar.h"
|
||||
#include "SpeechRecognition.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "mozilla/Attributes.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsTArray.h"
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "nsWrapperCache.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
#include "AudioSegment.h"
|
||||
#include "endpointer.h"
|
||||
|
||||
#include "SpeechGrammar.h"
|
||||
#include "mozilla/dom/SpeechRecognitionEvent.h"
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsIDocument.h"
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ if CONFIG['MOZ_WEBSPEECH_POCKETSPHINX']:
|
|||
'PocketSphinxSpeechRecognitionService.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'endpointer.cc',
|
||||
'energy_endpointer.cc',
|
||||
'energy_endpointer_params.cc',
|
||||
|
|
@ -45,12 +45,12 @@ UNIFIED_SOURCES += [
|
|||
]
|
||||
|
||||
if CONFIG['MOZ_WEBSPEECH_TEST_BACKEND']:
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'test/FakeSpeechRecognitionService.cpp',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_WEBSPEECH_POCKETSPHINX']:
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'PocketSphinxSpeechRecognitionService.cpp',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ if CONFIG['MOZ_WEBSPEECH']:
|
|||
'SpeechSynthesisVoice.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'ipc/SpeechSynthesisChild.cpp',
|
||||
'ipc/SpeechSynthesisParent.cpp',
|
||||
'nsSpeechTask.cpp',
|
||||
|
|
@ -37,7 +37,7 @@ if CONFIG['MOZ_WEBSPEECH']:
|
|||
]
|
||||
|
||||
if CONFIG['MOZ_WEBSPEECH_TEST_BACKEND']:
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'test/FakeSynthModule.cpp',
|
||||
'test/nsFakeSynthServices.cpp'
|
||||
]
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsPicoService.cpp',
|
||||
'PicoModule.cpp'
|
||||
]
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'SpeechDispatcherModule.cpp',
|
||||
'SpeechDispatcherService.cpp'
|
||||
]
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# 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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'SapiModule.cpp',
|
||||
'SapiService.cpp'
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue