[FFmpeg-cvslog] cosmetics: Use consistent names for multiple inclusion guards.
Diego Biurrun
git at videolan.org
Tue Dec 18 14:33:00 CET 2012
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Sun Dec 9 13:35:21 2012 +0100| [81c7c817a43c5d8fc9a09910ecd159cf8dcdb8be] | committer: Diego Biurrun
cosmetics: Use consistent names for multiple inclusion guards.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=81c7c817a43c5d8fc9a09910ecd159cf8dcdb8be
---
libavcodec/gsmdec_data.h | 6 +++---
libavcodec/options_table.h | 6 +++---
libavformat/options_table.h | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/libavcodec/gsmdec_data.h b/libavcodec/gsmdec_data.h
index 61715c8..2f3a2d2 100644
--- a/libavcodec/gsmdec_data.h
+++ b/libavcodec/gsmdec_data.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef AVCODEC_GSMDEC_DATA
-#define AVCODEC_GSMDEC_DATA
+#ifndef AVCODEC_GSMDEC_DATA_H
+#define AVCODEC_GSMDEC_DATA_H
#include <stdint.h>
#include "avcodec.h"
@@ -41,4 +41,4 @@ typedef struct GSMContext {
extern const uint16_t ff_gsm_long_term_gain_tab[4];
extern const int16_t ff_gsm_dequant_tab[64][8];
-#endif /* AVCODEC_GSMDEC_DATA */
+#endif /* AVCODEC_GSMDEC_DATA_H */
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h
index 624239e..ddbc00c 100644
--- a/libavcodec/options_table.h
+++ b/libavcodec/options_table.h
@@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef AVCODEC_OPTIONS_TABLE
-#define AVCODEC_OPTIONS_TABLE
+#ifndef AVCODEC_OPTIONS_TABLE_H
+#define AVCODEC_OPTIONS_TABLE_H
#include <float.h>
#include <limits.h>
@@ -413,4 +413,4 @@ static const AVOption options[]={
#undef DEFAULT
#undef OFFSET
-#endif // AVCODEC_OPTIONS_TABLE
+#endif /* AVCODEC_OPTIONS_TABLE_H */
diff --git a/libavformat/options_table.h b/libavformat/options_table.h
index 4beee5d..d1e2a0c 100644
--- a/libavformat/options_table.h
+++ b/libavformat/options_table.h
@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef AVFORMAT_OPTIONS_TABLE
-#define AVFORMAT_OPTIONS_TABLE
+#ifndef AVFORMAT_OPTIONS_TABLE_H
+#define AVFORMAT_OPTIONS_TABLE_H
#include <limits.h>
@@ -65,4 +65,4 @@ static const AVOption options[]={
#undef DEFAULT
#undef OFFSET
-#endif // AVFORMAT_OPTIONS_TABLE
+#endif /* AVFORMAT_OPTIONS_TABLE_H */
More information about the ffmpeg-cvslog
mailing list