diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-10-20 15:56:56 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-10-20 15:59:20 +0200 |
commit | 43fce2214b1c9d0d3cbcc84f06238a63081e07fb (patch) | |
tree | e359e38892f5251cee77ae2578816f4843da5c42 | |
parent | 99d48b07d1f7b07e380caca13d632ee635a7c9c3 (diff) | |
download | ffmpeg-43fce2214b1c9d0d3cbcc84f06238a63081e07fb.tar.gz |
lavfi: add missing header mulitple-inclusion guard in transform.h
-rw-r--r-- | libavfilter/transform.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/transform.h b/libavfilter/transform.h index 6e688487b2..701c833ecc 100644 --- a/libavfilter/transform.h +++ b/libavfilter/transform.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVFILTER_TRANSFORM_H +#define AVFILTER_TRANSFORM_H + /** * @file * transform input video @@ -118,3 +121,4 @@ void avfilter_transform(const uint8_t *src, uint8_t *dst, enum InterpolateMethod interpolate, enum FillMethod fill); +#endif /* AVFILTER_TRANSFORM_H */ |