summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-04-18 01:41:24 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-04-18 01:41:24 -0400
commit735a7eb9f7f1958cc6e48c793902025cf1b9e0a3 (patch)
treee84d6226804102043ec08206a67a5e29ddbedd47
parentcecc77ae6f9bf1cda2370a6bd0629b652db20ec0 (diff)
downloadUXP-735a7eb9f7f1958cc6e48c793902025cf1b9e0a3.tar
UXP-735a7eb9f7f1958cc6e48c793902025cf1b9e0a3.tar.gz
UXP-735a7eb9f7f1958cc6e48c793902025cf1b9e0a3.tar.lz
UXP-735a7eb9f7f1958cc6e48c793902025cf1b9e0a3.tar.xz
UXP-735a7eb9f7f1958cc6e48c793902025cf1b9e0a3.zip
Issue #80 - De-unify dom/media/mediasink
-rw-r--r--dom/media/mediasink/DecodedStream.cpp2
-rw-r--r--dom/media/mediasink/VideoSink.cpp2
-rw-r--r--dom/media/mediasink/moz.build2
3 files changed, 5 insertions, 1 deletions
diff --git a/dom/media/mediasink/DecodedStream.cpp b/dom/media/mediasink/DecodedStream.cpp
index 00bc5ea49..54161be5c 100644
--- a/dom/media/mediasink/DecodedStream.cpp
+++ b/dom/media/mediasink/DecodedStream.cpp
@@ -19,6 +19,8 @@
#include "VideoSegment.h"
#include "VideoUtils.h"
+#include "nsPrintfCString.h"
+
namespace mozilla {
#undef DUMP_LOG
diff --git a/dom/media/mediasink/VideoSink.cpp b/dom/media/mediasink/VideoSink.cpp
index 18c0b22ad..a438cf8a4 100644
--- a/dom/media/mediasink/VideoSink.cpp
+++ b/dom/media/mediasink/VideoSink.cpp
@@ -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 {
diff --git a/dom/media/mediasink/moz.build b/dom/media/mediasink/moz.build
index c09341374..34c78a749 100644
--- a/dom/media/mediasink/moz.build
+++ b/dom/media/mediasink/moz.build
@@ -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',