diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-21 02:33:35 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-06-19 17:31:49 -0400 |
commit | 440842c4eb1d7709654ec97cd687663d11ef499c (patch) | |
tree | 602479fd5b3c8373831ad66408a9f28a8b0e796e /libavutil | |
parent | 852c329a69ddfd635807f60454df07d021c64901 (diff) | |
download | ffmpeg-440842c4eb1d7709654ec97cd687663d11ef499c.tar.gz |
stereo3d: add missing include guards
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/stereo3d.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/stereo3d.h b/libavutil/stereo3d.h index 695d6f1bae..b1910b1f87 100644 --- a/libavutil/stereo3d.h +++ b/libavutil/stereo3d.h @@ -18,6 +18,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVUTIL_STEREO3D_H +#define AVUTIL_STEREO3D_H + #include <stdint.h> #include "frame.h" @@ -145,3 +148,5 @@ AVStereo3D *av_stereo3d_alloc(void); * @return The AVStereo3D structure to be filled by caller. */ AVStereo3D *av_stereo3d_create_side_data(AVFrame *frame); + +#endif /* AVUTIL_STEREO3D_H */ |