diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-23 20:13:43 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-09 13:40:44 +0200 |
commit | f8fd0c29ce5dc7d4be13e7e89d0f1e8a035ae71b (patch) | |
tree | 1b55c5ad4e4517c15415a59cf0e1421abad07767 /libavcodec/v210enc.h | |
parent | bb815dfc38b8ef7a89d6b9684ce0cdc296385d6d (diff) | |
download | ffmpeg-f8fd0c29ce5dc7d4be13e7e89d0f1e8a035ae71b.tar.gz |
v210: Fix typo in header guards
Diffstat (limited to 'libavcodec/v210enc.h')
-rw-r--r-- | libavcodec/v210enc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/v210enc.h b/libavcodec/v210enc.h index 908506db6e..be9b66de92 100644 --- a/libavcodec/v210enc.h +++ b/libavcodec/v210enc.h @@ -16,8 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCOENC_V210ENC_H -#define AVCOENC_V210ENC_H +#ifndef AVCODEC_V210ENC_H +#define AVCODEC_V210ENC_H #include "libavutil/log.h" #include "libavutil/opt.h" @@ -32,4 +32,4 @@ typedef struct V210EncContext { void ff_v210enc_init_x86(V210EncContext *s); -#endif /* AVCOENC_V210ENC_H */ +#endif /* AVCODEC_V210ENC_H */ |