[vlc-commits] mpeg mux: fixed include-guards
Filip Roséen
git at videolan.org
Mon Feb 22 11:59:34 CET 2016
vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Feb 22 01:12:47 2016 +0100| [b14140fc76db571b4300a819d13c442d00617eb8] | committer: Jean-Baptiste Kempf
mpeg mux: fixed include-guards
* renamed include-guards to fix issues with reserved identifiers
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b14140fc76db571b4300a819d13c442d00617eb8
---
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 *);
More information about the vlc-commits
mailing list