]> git.sesse.net Git - vlc/commitdiff
Dash: __STDC_CONSTANT_MACROS must be before config.h
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 21 Feb 2014 17:16:10 +0000 (18:16 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 21 Feb 2014 17:16:33 +0000 (18:16 +0100)
config.h includes vlc_fixup.h that can include stdint.h

modules/stream_filter/dash/dash.cpp

index bd0bc31228fd58c1c1a0fecee97bb1e786e0bfa1..15b537d57a625c3202657c0e3e29789d4ffa61c4 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
+#define __STDC_CONSTANT_MACROS 1
+
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
-#define __STDC_CONSTANT_MACROS 1
 #include <stdint.h>
 
 #include <vlc_common.h>