Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-12-09 16:35:21 +0400
committerDiego Biurrun <diego@biurrun.de>2012-12-17 20:02:22 +0400
commit81c7c817a43c5d8fc9a09910ecd159cf8dcdb8be (patch)
treec1a4c17af8f0f58f579f613bd46eefa0e3eb6c91 /libavcodec
parent0cf3505930913d3584b215f6912de04ff41366e0 (diff)
cosmetics: Use consistent names for multiple inclusion guards.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/gsmdec_data.h6
-rw-r--r--libavcodec/options_table.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/gsmdec_data.h b/libavcodec/gsmdec_data.h
index 61715c8858..2f3a2d29af 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 624239e72e..ddbc00c13d 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 */