diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-02-07 09:26:15 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-02-07 09:26:15 -0800 |
commit | 0bcffc79242492073e64ee2d6936d2c621c0feb6 (patch) | |
tree | 4e9196604dae63fce9a6ff50095cf81eccf8728c | |
parent | 59ebf32bca7e3c7ce6190794a520512874ec5fe6 (diff) | |
download | ffmpeg-0bcffc79242492073e64ee2d6936d2c621c0feb6.tar.gz |
diractab: Fix header guard name
-rw-r--r-- | libavcodec/diractab.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/diractab.h b/libavcodec/diractab.h index 26dd79576e..cd8b8acee7 100644 --- a/libavcodec/diractab.h +++ b/libavcodec/diractab.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_DIRAC_TABLES_H -#define AVCODEC_DIRAC_TABLES_H +#ifndef AVCODEC_DIRACTAB_H +#define AVCODEC_DIRACTAB_H #include <stdint.h> @@ -38,4 +38,4 @@ extern const int32_t ff_dirac_qoffset_intra_tab[120]; /* Scaling offsets needed for quantization/dequantization, for inter frames */ extern const int ff_dirac_qoffset_inter_tab[122]; -#endif /* AVCODEC_DIRAC_TABLES_H */ +#endif /* AVCODEC_DIRACTAB_H */ |