Bug 1671641 - Make `dom/media/encoder` buildable outside of `unified-build` environment. r=sg

Depends on D94975

Differential Revision: https://phabricator.services.mozilla.com/D94977
This commit is contained in:
Andi-Bogdan Postelnicu 2020-10-28 16:29:37 +00:00
Родитель bfb8c3235d
Коммит c2c4d8990b
4 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -40,5 +40,6 @@ dom/media/benchmark/
dom/media/bridge/ dom/media/bridge/
dom/media/doctor/ dom/media/doctor/
dom/media/eme/ dom/media/eme/
dom/media/encoder/
dom/quota/ dom/quota/
dom/simpledb/ dom/simpledb/

Просмотреть файл

@ -11,6 +11,8 @@
namespace mozilla { namespace mozilla {
class ContainerWriter; class ContainerWriter;
class EncodedFrame;
class TrackMetadataBase;
// Generic Muxer class that helps pace the output from track encoders to the // Generic Muxer class that helps pace the output from track encoders to the
// ContainerWriter, so time never appears to go backwards. // ContainerWriter, so time never appears to go backwards.

Просмотреть файл

@ -6,6 +6,7 @@
#include "TrackEncoder.h" #include "TrackEncoder.h"
#include "AudioChannelFormat.h" #include "AudioChannelFormat.h"
#include "DriftCompensation.h"
#include "GeckoProfiler.h" #include "GeckoProfiler.h"
#include "MediaTrackGraph.h" #include "MediaTrackGraph.h"
#include "MediaTrackListener.h" #include "MediaTrackListener.h"
@ -13,6 +14,7 @@
#include "mozilla/Logging.h" #include "mozilla/Logging.h"
#include "VideoUtils.h" #include "VideoUtils.h"
#include "mozilla/Logging.h" #include "mozilla/Logging.h"
#include "mozilla/Telemetry.h"
namespace mozilla { namespace mozilla {

Просмотреть файл

@ -5,6 +5,7 @@
#include "VP8TrackEncoder.h" #include "VP8TrackEncoder.h"
#include "DriftCompensation.h"
#include "GeckoProfiler.h" #include "GeckoProfiler.h"
#include "ImageToI420.h" #include "ImageToI420.h"
#include "mozilla/gfx/2D.h" #include "mozilla/gfx/2D.h"