[vlc-commits] avcodec: fixed include-guards for chroma
Filip Roséen
git at videolan.org
Mon Feb 22 11:59:36 CET 2016
vlc | branch: master | Filip Roséen <filip at atch.se> | Mon Feb 22 01:13:01 2016 +0100| [61ad95a64d3ebdc8d626fd104f0ea7a8afafaa1d] | committer: Jean-Baptiste Kempf
avcodec: fixed include-guards for chroma
* 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=61ad95a64d3ebdc8d626fd104f0ea7a8afafaa1d
---
modules/codec/avcodec/chroma.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/codec/avcodec/chroma.h b/modules/codec/avcodec/chroma.h
index d7ef4ef..99dc1d6 100644
--- a/modules/codec/avcodec/chroma.h
+++ b/modules/codec/avcodec/chroma.h
@@ -23,8 +23,8 @@
/* VLC <-> avutil tables */
-#ifndef _VLC_AVUTIL_CHROMA_H
-#define _VLC_AVUTIL_CHROMA_H 1
+#ifndef VLC_AVUTIL_CHROMA_H_
+#define VLC_AVUTIL_CHROMA_H_
int FindFfmpegChroma( vlc_fourcc_t );
int GetFfmpegChroma( int *i_ffmpeg_chroma, const video_format_t *fmt );
More information about the vlc-commits
mailing list