[vlc-devel] [PATCH 06/27] modules/mux/mpeg: fixed include-guards

Filip Roséen filip at atch.se
Mon Feb 22 01:12:47 CET 2016


  * renamed include-guards to fix issues with reserved identifiers
---
 modules/mux/mpeg/csa.h     | 4 ++--
 modules/mux/mpeg/streams.h | 4 ++--
 modules/mux/mpeg/tables.h  | 4 ++--
 modules/mux/mpeg/tsutil.h  | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/mux/mpeg/csa.h b/modules/mux/mpeg/csa.h
index 2e380e7..6deddbb 100644
--- a/modules/mux/mpeg/csa.h
+++ b/modules/mux/mpeg/csa.h
@@ -21,8 +21,8 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#ifndef _CSA_H
-#define _CSA_H 1
+#ifndef VLC_MPEG_CSA_H_
+#define VLC_MPEG_CSA_H_
 
 typedef struct csa_t csa_t;
 #define csa_New     __csa_New
diff --git a/modules/mux/mpeg/streams.h b/modules/mux/mpeg/streams.h
index acdc014..a066337 100644
--- a/modules/mux/mpeg/streams.h
+++ b/modules/mux/mpeg/streams.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 _STREAMS_H
-#define _STREAMS_H 1
+#ifndef VLC_MPEG_STREAMS_H_
+#define VLC_MPEG_STREAMS_H_
 
 typedef struct
 {
diff --git a/modules/mux/mpeg/tables.h b/modules/mux/mpeg/tables.h
index f89bd10..b302558 100644
--- a/modules/mux/mpeg/tables.h
+++ b/modules/mux/mpeg/tables.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 _TABLES_H
-#define _TABLES_H 1
+#ifndef VLC_MPEG_TABLES_H_
+#define VLC_MPEG_TABLES_H_
 
 #define MAX_SDT_DESC 64
 
diff --git a/modules/mux/mpeg/tsutil.h b/modules/mux/mpeg/tsutil.h
index e892c54..b49b8be 100644
--- a/modules/mux/mpeg/tsutil.h
+++ b/modules/mux/mpeg/tsutil.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 _TSUTIL_H
-#define _TSUTIL_H 1
+#ifndef VLC_MPEG_TSUTIL_H_
+#define VLC_MPEG_TSUTIL_H_
 
 typedef void(*PEStoTSCallback)(void *, block_t *);
 
-- 
2.7.1



More information about the vlc-devel mailing list