summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-06-19 23:47:07 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-06-19 23:47:10 +0200
commitb05d50898f5cad7487fb937c7b0372e6ac912745 (patch)
tree4a65c9aad6d76a05476e196a8ea6e95f6df6202c /libavutil
parent05d95c53a70f983c124da112553502f7bcfec640 (diff)
parent440842c4eb1d7709654ec97cd687663d11ef499c (diff)
Merge commit '440842c4eb1d7709654ec97cd687663d11ef499c'
* commit '440842c4eb1d7709654ec97cd687663d11ef499c': stereo3d: add missing include guards Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/stereo3d.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/stereo3d.h b/libavutil/stereo3d.h
index 8829da9ff4..1135dc9ddc 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 */