From 2b7ca2304a9b17568fac57a0bceba72b9c9ab580 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Feb 2012 18:59:41 +0000 Subject: unify include guard defines, __$FILENAME__ without the underscores these clogged up the namespace for autocompleation which was annoying. --- extern/libredcode/codec.h | 4 ++-- extern/libredcode/debayer.h | 4 ++-- extern/libredcode/format.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'extern/libredcode') diff --git a/extern/libredcode/codec.h b/extern/libredcode/codec.h index 928cab589ed..dd239180c10 100644 --- a/extern/libredcode/codec.h +++ b/extern/libredcode/codec.h @@ -1,5 +1,5 @@ -#ifndef __redcode_codec_h_included__ -#define __redcode_codec_h_included__ +#ifndef __CODEC_H__ +#define __CODEC_H__ struct redcode_frame; diff --git a/extern/libredcode/debayer.h b/extern/libredcode/debayer.h index b58c7678671..43564240cc2 100644 --- a/extern/libredcode/debayer.h +++ b/extern/libredcode/debayer.h @@ -1,5 +1,5 @@ -#ifndef __redcode_debayer_h_included__ -#define __redcode_debayer_h_included__ 1 +#ifndef __DEBAYER_H__ +#define __DEBAYER_H__ void redcode_ycbcr2rgb_fullscale( int ** planes, int width, int height, float * out); diff --git a/extern/libredcode/format.h b/extern/libredcode/format.h index b2c6b2d885b..3cee804aa9d 100644 --- a/extern/libredcode/format.h +++ b/extern/libredcode/format.h @@ -1,5 +1,5 @@ -#ifndef __redcode_format_h_included__ -#define __redcode_format_h_included__ +#ifndef __FORMAT_H__ +#define __FORMAT_H__ struct redcode_handle; struct redcode_frame { -- cgit v1.2.3