[vlc-commits] dash: Include <config.h> in new cpp files.
Hugo Beauzée-Luyssen
git at videolan.org
Thu Feb 2 12:43:23 CET 2012
vlc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Thu Feb 2 12:43:04 2012 +0100| [91da0b24c6110d776a690664715bca83b3adf0d7] | committer: Hugo Beauzée-Luyssen
dash: Include <config.h> in new cpp files.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=91da0b24c6110d776a690664715bca83b3adf0d7
---
modules/stream_filter/dash/mpd/AdaptationSet.cpp | 4 ++++
.../stream_filter/dash/mpd/IsoffMainManager.cpp | 4 ++++
modules/stream_filter/dash/mpd/IsoffMainParser.cpp | 4 ++++
modules/stream_filter/dash/mpd/MPDFactory.cpp | 4 ++++
modules/stream_filter/dash/mpd/SegmentBase.cpp | 4 ++++
modules/stream_filter/dash/mpd/SegmentList.cpp | 4 ++++
6 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/modules/stream_filter/dash/mpd/AdaptationSet.cpp b/modules/stream_filter/dash/mpd/AdaptationSet.cpp
index a4ca0d9..f87a65c 100644
--- a/modules/stream_filter/dash/mpd/AdaptationSet.cpp
+++ b/modules/stream_filter/dash/mpd/AdaptationSet.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "AdaptationSet.h"
using namespace dash::mpd;
diff --git a/modules/stream_filter/dash/mpd/IsoffMainManager.cpp b/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
index 4ac0b85..6f70001 100644
--- a/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
+++ b/modules/stream_filter/dash/mpd/IsoffMainManager.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "IsoffMainManager.h"
using namespace dash::mpd;
diff --git a/modules/stream_filter/dash/mpd/IsoffMainParser.cpp b/modules/stream_filter/dash/mpd/IsoffMainParser.cpp
index 4662a15..c2bedd8 100644
--- a/modules/stream_filter/dash/mpd/IsoffMainParser.cpp
+++ b/modules/stream_filter/dash/mpd/IsoffMainParser.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "IsoffMainParser.h"
using namespace dash::mpd;
diff --git a/modules/stream_filter/dash/mpd/MPDFactory.cpp b/modules/stream_filter/dash/mpd/MPDFactory.cpp
index d6fdf72..88d6e36 100644
--- a/modules/stream_filter/dash/mpd/MPDFactory.cpp
+++ b/modules/stream_filter/dash/mpd/MPDFactory.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "MPDFactory.h"
using namespace dash::xml;
diff --git a/modules/stream_filter/dash/mpd/SegmentBase.cpp b/modules/stream_filter/dash/mpd/SegmentBase.cpp
index f819305..b8167ab 100644
--- a/modules/stream_filter/dash/mpd/SegmentBase.cpp
+++ b/modules/stream_filter/dash/mpd/SegmentBase.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "SegmentBase.h"
using namespace dash::mpd;
diff --git a/modules/stream_filter/dash/mpd/SegmentList.cpp b/modules/stream_filter/dash/mpd/SegmentList.cpp
index 653d641..ec2807b 100644
--- a/modules/stream_filter/dash/mpd/SegmentList.cpp
+++ b/modules/stream_filter/dash/mpd/SegmentList.cpp
@@ -22,6 +22,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "SegmentList.h"
using namespace dash::mpd;
More information about the vlc-commits
mailing list