[vlc-devel] [PATCH 14/28] modules/demux/mp4: fixed include-guards

Filip Roséen filip at atch.se
Sat Feb 20 23:20:19 CET 2016


  * renamed include-guards to fix issues with reserved identifiers
---
 modules/demux/mp4/fragments.h | 4 ++--
 modules/demux/mp4/languages.h | 4 ++--
 modules/demux/mp4/libmp4.h    | 4 ++--
 modules/demux/mp4/mp4.h       | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/demux/mp4/fragments.h b/modules/demux/mp4/fragments.h
index a7a6c9a..bea6221 100644
--- a/modules/demux/mp4/fragments.h
+++ b/modules/demux/mp4/fragments.h
@@ -17,8 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
-#ifndef _VLC_FRAGMENTS_H
-#define _VLC_FRAGMENTS_H 1
+#ifndef DEMUX__MP4__FRAGMENTS_H_
+#define DEMUX__MP4__FRAGMENTS_H_
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
diff --git a/modules/demux/mp4/languages.h b/modules/demux/mp4/languages.h
index de7b04a..622dba4 100644
--- a/modules/demux/mp4/languages.h
+++ b/modules/demux/mp4/languages.h
@@ -17,8 +17,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
-#ifndef _VLC_MP4_LANGUAGES_H
-#define _VLC_MP4_LANGUAGES_H 1
+#ifndef DEMUX__MP4__LANGUAGES_H_
+#define DEMUX__MP4__LANGUAGES_H_
 
 static bool decodeQtLanguageCode( uint16_t i_language_code, char *psz_iso,
                                   bool *b_mactables )
diff --git a/modules/demux/mp4/libmp4.h b/modules/demux/mp4/libmp4.h
index 20a9c27..6ed9e87 100644
--- a/modules/demux/mp4/libmp4.h
+++ b/modules/demux/mp4/libmp4.h
@@ -20,8 +20,8 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _VLC_LIBMP4_H
-#define _VLC_LIBMP4_H 1
+#ifndef DEMUX__MP4__LIBMP4_H_
+#define DEMUX__MP4__LIBMP4_H_
 
 #include <vlc_es.h>
 #include <vlc_codecs.h>
diff --git a/modules/demux/mp4/mp4.h b/modules/demux/mp4/mp4.h
index 2119748..6be1495 100644
--- a/modules/demux/mp4/mp4.h
+++ b/modules/demux/mp4/mp4.h
@@ -18,8 +18,8 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
-#ifndef _VLC_MP4_H
-#define _VLC_MP4_H 1
+#ifndef DEMUX__MP4__MP4_H_
+#define DEMUX__MP4__MP4_H_
 
 /*****************************************************************************
  * Preamble
-- 
2.7.1



More information about the vlc-devel mailing list