Bug 1407063 - Fix non-unified build in SinfParser.cpp. r?gerald draft
authorPhilippe Normand <philn@igalia.com>
Thu, 05 Oct 2017 15:54:08 +0200
changeset 677019 82b8c11aa5b6e324d5d0e03c358d0186cb60dae3
parent 677018 19585ea3eef6419ab1ed7034d236121ff28175f6
child 677020 6c2142793b8da6b14b44c586aec0d7f24f849b5c
push id83665
push userbmo:cpearce@mozilla.com
push dateMon, 09 Oct 2017 21:50:20 +0000
reviewersgerald
bugs1407063
milestone58.0a1
Bug 1407063 - Fix non-unified build in SinfParser.cpp. r?gerald The Stream class is used in this compilation unit so the Stream.h header needs to be included. MozReview-Commit-ID: 54X1UKuydUy
media/libstagefright/binding/SinfParser.cpp
--- a/media/libstagefright/binding/SinfParser.cpp
+++ b/media/libstagefright/binding/SinfParser.cpp
@@ -1,16 +1,17 @@
 /* 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 "mozilla/Unused.h"
 #include "mp4_demuxer/SinfParser.h"
 #include "mp4_demuxer/AtomType.h"
 #include "mp4_demuxer/Box.h"
+#include "mp4_demuxer/Stream.h"
 
 namespace mp4_demuxer {
 
 Sinf::Sinf(Box& aBox)
   : mDefaultIVSize(0)
   , mDefaultEncryptionType()
 {
   SinfParser parser(aBox);