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

Filip Roséen filip at atch.se
Sat Feb 20 23:20:11 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..105bf02 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 MUX__MPEG__CSA_H_
+#define MUX__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..2337e8c 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 MUX__MPEG__STREAMS_H_
+#define MUX__MPEG__STREAMS_H_
 
 typedef struct
 {
diff --git a/modules/mux/mpeg/tables.h b/modules/mux/mpeg/tables.h
index f89bd10..dd946d4 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 MUX__MPEG__TABLES_H_
+#define MUX__MPEG__TABLES_H_
 
 #define MAX_SDT_DESC 64
 
diff --git a/modules/mux/mpeg/tsutil.h b/modules/mux/mpeg/tsutil.h
index e892c54..6a35baf 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 MUX__MPEG__TSUTIL_H_
+#define MUX__MPEG__TSUTIL_H_
 
 typedef void(*PEStoTSCallback)(void *, block_t *);
 
-- 
2.7.1



More information about the vlc-devel mailing list