shithub: openh264

Download patch

ref: 713beb7df75931f314b1cc4be1d661c391107d4e
parent: 5fdd01ec0c67cd0f02496a8b4f4b2c5b3ff39efb
author: Martin Storsjö <martin@martin.st>
date: Mon Feb 2 07:36:07 EST 2015

Fix typos in header include guards

--- a/codec/decoder/core/inc/wels_const.h
+++ b/codec/decoder/core/inc/wels_const.h
@@ -31,8 +31,8 @@
  */
 
 //wels_const.h
-#ifndef WELS_CONSTANCE_H__
-#define WELS_CONSTANCE_H__
+#ifndef WELS_CONST_H__
+#define WELS_CONST_H__
 
 // Miscellaneous sizing infos
 #ifndef MAX_FNAME_LEN
@@ -102,4 +102,4 @@
     AVC_REWRITE_ENHANCE_MB = 2
 };
 
-#endif//WELS_CONSTANCE_H__
+#endif//WELS_CONST_H__
--- a/codec/encoder/core/inc/wels_const.h
+++ b/codec/encoder/core/inc/wels_const.h
@@ -31,8 +31,8 @@
  */
 
 //wels_const.h
-#ifndef WELS_CONSTANCE_H__
-#define WELS_CONSTANCE_H__
+#ifndef WELS_CONST_H__
+#define WELS_CONST_H__
 
 #include "as264_common.h"	//  to communicate with specific macros there, 3/18/2010
 #include "codec_app_def.h"
@@ -215,4 +215,4 @@
 };
 //TODO: need to complete the return checking in encoder and fill in more types if needed
 
-#endif//WELS_CONSTANCE_H__
+#endif//WELS_CONST_H__