[vlc-commits] dash: fix windows compile

Rafaël Carré git at videolan.org
Fri Jan 27 02:21:00 CET 2012


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Thu Jan 26 20:17:13 2012 -0500| [c4df4fdf819370fb3c8d26c1f8236b33dea0d009] | committer: Rafaël Carré

dash: fix windows compile

include config.h

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c4df4fdf819370fb3c8d26c1f8236b33dea0d009
---

 .../dash/mpd/CommonAttributesElements.cpp          |    4 ++++
 modules/stream_filter/dash/mpd/Group.cpp           |    4 ++++
 modules/stream_filter/dash/mpd/SegmentTimeline.cpp |    4 ++++
 3 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/modules/stream_filter/dash/mpd/CommonAttributesElements.cpp b/modules/stream_filter/dash/mpd/CommonAttributesElements.cpp
index 30aa62f..2dae5ac 100644
--- a/modules/stream_filter/dash/mpd/CommonAttributesElements.cpp
+++ b/modules/stream_filter/dash/mpd/CommonAttributesElements.cpp
@@ -21,6 +21,10 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "CommonAttributesElements.h"
 
 #include "mpd/ContentDescription.h"
diff --git a/modules/stream_filter/dash/mpd/Group.cpp b/modules/stream_filter/dash/mpd/Group.cpp
index b2073bd..2a3c679 100644
--- a/modules/stream_filter/dash/mpd/Group.cpp
+++ b/modules/stream_filter/dash/mpd/Group.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 "Group.h"
 
 #include <vlc_common.h>
diff --git a/modules/stream_filter/dash/mpd/SegmentTimeline.cpp b/modules/stream_filter/dash/mpd/SegmentTimeline.cpp
index d9a9974..0294fe2 100644
--- a/modules/stream_filter/dash/mpd/SegmentTimeline.cpp
+++ b/modules/stream_filter/dash/mpd/SegmentTimeline.cpp
@@ -21,6 +21,10 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "SegmentTimeline.h"
 
 #include <vlc_common.h>



More information about the vlc-commits mailing list