Browse code

Merge commit '440842c4eb1d7709654ec97cd687663d11ef499c'

* commit '440842c4eb1d7709654ec97cd687663d11ef499c':
stereo3d: add missing include guards

Merged-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2014/06/20 06:47:07
Showing 1 changed files
... ...
@@ -18,6 +18,9 @@
18 18
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 19
  */
20 20
 
21
+#ifndef AVUTIL_STEREO3D_H
22
+#define AVUTIL_STEREO3D_H
23
+
21 24
 #include <stdint.h>
22 25
 
23 26
 #include "frame.h"
... ...
@@ -145,3 +148,5 @@ AVStereo3D *av_stereo3d_alloc(void);
145 145
  * @return The AVStereo3D structure to be filled by caller.
146 146
  */
147 147
 AVStereo3D *av_stereo3d_create_side_data(AVFrame *frame);
148
+
149
+#endif /* AVUTIL_STEREO3D_H */