diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-02-10 18:02:35 +0000 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-02-10 18:02:35 +0000 |
commit | 5669aa2a8ac5852daf629e648ffae64e88e659e1 (patch) | |
tree | 03970d6f30276b678f59120a8eecea041d6144eb | |
parent | 135460383e9361c462dda0a0b0cb9a882230f542 (diff) | |
download | ffmpeg-5669aa2a8ac5852daf629e648ffae64e88e659e1.tar.gz |
vc2enc: use project-standard inclusion guards
This was first reported on the mailing list in an earlier revision of this
encoder but was forgotten from the final commit.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-rw-r--r-- | libavcodec/vc2enc_dwt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vc2enc_dwt.h b/libavcodec/vc2enc_dwt.h index ff595d4d7a..ce141d7a57 100644 --- a/libavcodec/vc2enc_dwt.h +++ b/libavcodec/vc2enc_dwt.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_VC2_TRANSFORMS_H -#define AVCODEC_VC2_TRANSFORMS_H +#ifndef AVCODEC_VC2ENC_DWT_H +#define AVCODEC_VC2ENC_DWT_H #include <stdint.h> @@ -51,4 +51,4 @@ typedef struct VC2TransformContext { int ff_vc2enc_init_transforms(VC2TransformContext *t, int p_width, int p_height); void ff_vc2enc_free_transforms(VC2TransformContext *t); -#endif /* AVCODEC_VC2_TRANSFORMS_H */ +#endif /* AVCODEC_VC2ENC_DWT_H */ |