<div dir="ltr">Wrong patch folder, please ignore this one. Sorry.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2014-09-09 19:03 GMT+02:00 Felix Abecassis <span dir="ltr"><<a href="mailto:felix.abecassis@gmail.com" target="_blank">felix.abecassis@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">---<br>
 include/vlc_stereo3d.h | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++<br>
 1 file changed, 62 insertions(+)<br>
 create mode 100644 include/vlc_stereo3d.h<br>
<br>
diff --git a/include/vlc_stereo3d.h b/include/vlc_stereo3d.h<br>
new file mode 100644<br>
index 0000000..c720fa4<br>
--- /dev/null<br>
+++ b/include/vlc_stereo3d.h<br>
@@ -0,0 +1,62 @@<br>
+/*****************************************************************************<br>
+ * vlc_stereo3d.h: video stereoscopy definitions<br>
+ *****************************************************************************<br>
+ * Copyright (C) 2014 VLC authors and VideoLAN<br>
+ *<br>
+ * Authors: Felix Abecassis <<a href="mailto:felix.abecassis@gmail.com">felix.abecassis@gmail.com</a>><br>
+ *<br>
+ * This program is free software; you can redistribute it and/or modify it<br>
+ * under the terms of the GNU Lesser General Public License as published by<br>
+ * the Free Software Foundation; either version 2.1 of the License, or<br>
+ * (at your option) any later version.<br>
+ *<br>
+ * This program is distributed in the hope that it will be useful,<br>
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>
+ * GNU Lesser General Public License for more details.<br>
+ *<br>
+ * You should have received a copy of the GNU Lesser General Public License<br>
+ * along with this program; if not, write to the Free Software Foundation,<br>
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.<br>
+ *****************************************************************************/<br>
+<br>
+#ifndef VLC_STEREO3D_H<br>
+#define VLC_STEREO3D_H<br>
+<br>
+typedef enum vlc_stereo3d_mode<br>
+{<br>
+    /* No stereoscopy: 2D picture. */<br>
+    VLC_STEREO3D_2D = 0,<br>
+<br>
+    /* Side-by-side with left eye first. */<br>
+    VLC_STEREO3D_SBS,<br>
+<br>
+    /* Top-bottom with left eye first. */<br>
+    VLC_STEREO3D_TB,<br>
+<br>
+    /* Row sequential with left eye first. */<br>
+    VLC_STEREO3D_ROW,<br>
+<br>
+    /* Column sequential with left eye first. */<br>
+    VLC_STEREO3D_COL,<br>
+<br>
+    /* Frame sequential with left eye first. */<br>
+    VLC_STEREO3D_FRAME,<br>
+<br>
+    /* Checkerboard pattern with left eye first. */<br>
+    /* VLC_STEREO3D_CHECKERBOARD, */<br>
+} vlc_stereo3d_mode;<br>
+<br>
+typedef enum vlc_stereo3d_flag<br>
+{<br>
+    /* Right eye is first instead of left eye. */<br>
+    VLC_STEREO3D_SWAP_EYES = 1,<br>
+} vlc_stereo3d_flag;<br>
+<br>
+typedef struct<br>
+{<br>
+    vlc_stereo3d_mode mode;<br>
+    vlc_stereo3d_flag flags;<br>
+} stereo3d_format_t;<br>
+<br>
+#endif<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.9.1<br>
<br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br>Félix Abecassis<div><a href="http://felix.abecassis.me" target="_blank">http://felix.abecassis.me</a></div>
</div>