shithub: openh264

Download patch

ref: 469419bfb4cf1aba6550114795b4d8615927aa3c
parent: 3ed2a4698b603d57652fea1e06672fbfbee5767b
parent: cf59a344640db5e8b8b5de9cddcdf8558e2908a4
author: Andreas Gal <andreas.gal@gmail.com>
date: Sat Dec 28 09:52:50 EST 2013

Merge pull request #82 from mstorsjo/include-guards

Don't use include guards with leading underscores

--- a/codec/encoder/core/inc/IWelsVP.h
+++ b/codec/encoder/core/inc/IWelsVP.h
@@ -44,8 +44,8 @@
  *************************************************************************************
  */
 
-#ifndef _IWELSVP_H_
-#define _IWELSVP_H_
+#ifndef IWELSVP_H_
+#define IWELSVP_H_
 
 #ifdef _WIN32
 #define WELSAPI __stdcall
@@ -283,6 +283,6 @@
 WELSVP_EXTERNC_END
 
 //////////////////////////////////////////////////////////////////////////////////////////////
-#endif // _IWELSVP_H_
+#endif // IWELSVP_H_
 
 
--- a/codec/encoder/core/inc/as264_common.h
+++ b/codec/encoder/core/inc/as264_common.h
@@ -38,8 +38,8 @@
  *************************************************************************************
  */
 
-#ifndef _AS264_COMMON_H_
-#define _AS264_COMMON_H_
+#ifndef AS264_COMMON_H_
+#define AS264_COMMON_H_
 
 /* debug setting for console
 $(TargetPath)
@@ -156,5 +156,5 @@
 #endif//_WIN32 & _DEBUG
 
 
-#endif // _AS264_COMMON_H_
+#endif // AS264_COMMON_H_
 
--- a/codec/encoder/core/inc/rc.h
+++ b/codec/encoder/core/inc/rc.h
@@ -40,8 +40,8 @@
  *
  *
  *************************************************************************/
-#ifndef _RC_H
-#define _RC_H
+#ifndef RC_H
+#define RC_H
 
 
 #include "codec_app_def.h"
@@ -229,4 +229,4 @@
 void WelsRcFreeMemory (void* pCtx);
 
 }
-#endif //_RC_H
+#endif //RC_H
--- a/codec/encoder/core/inc/sample.h
+++ b/codec/encoder/core/inc/sample.h
@@ -30,8 +30,8 @@
  *
  */
 
-#ifndef _SAMPLE_H_
-#define _SAMPLE_H_
+#ifndef SAMPLE_H_
+#define SAMPLE_H_
 
 #include "typedefs.h"
 #include "wels_func_ptr_def.h"
@@ -122,4 +122,4 @@
 
 }
 
-#endif //_SAMPLE_H_
+#endif //SAMPLE_H_
--- a/processing/interface/IWelsVP.h
+++ b/processing/interface/IWelsVP.h
@@ -44,8 +44,8 @@
  *************************************************************************************
  */
 
-#ifndef _IWELSVP_H_
-#define _IWELSVP_H_
+#ifndef IWELSVP_H_
+#define IWELSVP_H_
 
 #ifdef _WIN32
 #define WELSAPI __stdcall
@@ -281,6 +281,6 @@
 WELSVP_EXTERNC_END
 
 //////////////////////////////////////////////////////////////////////////////////////////////
-#endif // _IWELSVP_H_
+#endif // IWELSVP_H_
 
 
--- a/processing/src/adaptivequantization/AdaptiveQuantization.h
+++ b/processing/src/adaptivequantization/AdaptiveQuantization.h
@@ -38,8 +38,8 @@
  *
  */
 
-#ifndef _WELSVP_ADAPTIVEQUANTIZATION_H
-#define _WELSVP_ADAPTIVEQUANTIZATION_H
+#ifndef WELSVP_ADAPTIVEQUANTIZATION_H
+#define WELSVP_ADAPTIVEQUANTIZATION_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/backgounddetection/BackgroundDetection.h
+++ b/processing/src/backgounddetection/BackgroundDetection.h
@@ -38,8 +38,8 @@
  *
  */
 
-#ifndef _WELSVP_BACKGROUNDDETECTION_H
-#define _WELSVP_BACKGROUNDDETECTION_H
+#ifndef WELSVP_BACKGROUNDDETECTION_H
+#define WELSVP_BACKGROUNDDETECTION_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/common/WelsFrameWork.h
+++ b/processing/src/common/WelsFrameWork.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_WELSFRAMEWORK_H
-#define _WELSVP_WELSFRAMEWORK_H
+#ifndef WELSVP_WELSFRAMEWORK_H
+#define WELSVP_WELSFRAMEWORK_H
 
 #include "../../interface/IWelsVP.h"
 #include "util.h"
--- a/processing/src/common/cpu.h
+++ b/processing/src/common/cpu.h
@@ -37,8 +37,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_CPU_H
-#define _WELSVP_CPU_H
+#ifndef WELSVP_CPU_H
+#define WELSVP_CPU_H
 
 #include "typedef.h"
 
--- a/processing/src/common/memory.h
+++ b/processing/src/common/memory.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_MEMORY_H
-#define _WELSVP_MEMORY_H
+#ifndef WELSVP_MEMORY_H
+#define WELSVP_MEMORY_H
 
 #include "util.h"
 #include "typedef.h"
--- a/processing/src/common/thread.h
+++ b/processing/src/common/thread.h
@@ -37,8 +37,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_THREAD_H
-#define _WELSVP_THREAD_H
+#ifndef WELSVP_THREAD_H
+#define WELSVP_THREAD_H
 
 #include "typedef.h"
 
--- a/processing/src/common/typedef.h
+++ b/processing/src/common/typedef.h
@@ -41,8 +41,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_TYPEDEF_H
-#define _WELSVP_TYPEDEF_H
+#ifndef WELSVP_TYPEDEF_H
+#define WELSVP_TYPEDEF_H
 
 #define WELSVP_EXTERN_C_BEGIN       extern "C" {
 #define WELSVP_EXTERN_C_END         }
--- a/processing/src/common/util.h
+++ b/processing/src/common/util.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_UTIL_H
-#define _WELSVP_UTIL_H
+#ifndef WELSVP_UTIL_H
+#define WELSVP_UTIL_H
 
 #include <stdio.h>
 #include <stdlib.h>
--- a/processing/src/complexityanalysis/ComplexityAnalysis.h
+++ b/processing/src/complexityanalysis/ComplexityAnalysis.h
@@ -39,8 +39,8 @@
 *************************************************************************************
 */
 
-#ifndef _WELSVP_COMPLEXITYANALYSIS_H
-#define _WELSVP_COMPLEXITYANALYSIS_H
+#ifndef WELSVP_COMPLEXITYANALYSIS_H
+#define WELSVP_COMPLEXITYANALYSIS_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/denoise/denoise.h
+++ b/processing/src/denoise/denoise.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_DENOISE_H
-#define _WELSVP_DENOISE_H
+#ifndef WELSVP_DENOISE_H
+#define WELSVP_DENOISE_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/downsample/downsample.h
+++ b/processing/src/downsample/downsample.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_DOWNSAMPLE_H
-#define _WELSVP_DOWNSAMPLE_H
+#ifndef WELSVP_DOWNSAMPLE_H
+#define WELSVP_DOWNSAMPLE_H
 
 #include "../common/util.h"
 #include "../common/WelsFrameWork.h"
--- a/processing/src/imagerotate/imagerotate.h
+++ b/processing/src/imagerotate/imagerotate.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_IMAGEROTATE_H
-#define _WELSVP_IMAGEROTATE_H
+#ifndef WELSVP_IMAGEROTATE_H
+#define WELSVP_IMAGEROTATE_H
 
 #include "../common/util.h"
 #include "../common/WelsFrameWork.h"
--- a/processing/src/scenechangedetection/SceneChangeDetection.h
+++ b/processing/src/scenechangedetection/SceneChangeDetection.h
@@ -39,8 +39,8 @@
 *************************************************************************************
 */
 
-#ifndef _WELSVP_SCENECHANGEDETECTION_H
-#define _WELSVP_SCENECHANGEDETECTION_H
+#ifndef WELSVP_SCENECHANGEDETECTION_H
+#define WELSVP_SCENECHANGEDETECTION_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/scenechangedetection/SceneChangeDetectionCommon.h
+++ b/processing/src/scenechangedetection/SceneChangeDetectionCommon.h
@@ -38,8 +38,8 @@
  *
  */
 
-#ifndef _WELSVP_SCENECHANGEDETECTIONCOMMON_H
-#define _WELSVP_SCENECHANGEDETECTIONCOMMON_H
+#ifndef WELSVP_SCENECHANGEDETECTIONCOMMON_H
+#define WELSVP_SCENECHANGEDETECTIONCOMMON_H
 
 #include "../common/util.h"
 #include "../common/memory.h"
--- a/processing/src/vaacalc/vaacalculation.h
+++ b/processing/src/vaacalc/vaacalculation.h
@@ -39,8 +39,8 @@
  *************************************************************************************
  */
 
-#ifndef _WELSVP_VAACALCULATION_H
-#define _WELSVP_VAACALCULATION_H
+#ifndef WELSVP_VAACALCULATION_H
+#define WELSVP_VAACALCULATION_H
 
 #include "../common/util.h"
 #include "../common/memory.h"