[vlc-commits] omxil: Use the alternative 64 bit integer ABI on the raspberry pi
Martin Storsjö
git at videolan.org
Mon Mar 18 17:41:15 CET 2013
vlc | branch: master | Martin Storsjö <martin at martin.st> | Mon Mar 11 16:52:21 2013 +0200| [83fa9cbe5036c31d09a1e41404d1384901f7b695] | committer: Martin Storsjö
omxil: Use the alternative 64 bit integer ABI on the raspberry pi
This changes how some structs are laid out.
Most of OMX API implementation on the raspberry pi runs on the
VideoCore processor and not on the normal ARM thar runs the
userland. Some OMX structs are passed over to this processor as
whole blocks, so the OMX ABI used in the userland is tied to be the
same as the one used by the VideoCore firmware.
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=83fa9cbe5036c31d09a1e41404d1384901f7b695
---
modules/codec/omxil/omxil.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/modules/codec/omxil/omxil.h b/modules/codec/omxil/omxil.h
index 999895b..c040d3b 100644
--- a/modules/codec/omxil/omxil.h
+++ b/modules/codec/omxil/omxil.h
@@ -21,6 +21,10 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#ifdef RPI_OMX
+#define OMX_SKIP64BIT
+#endif
+
/*****************************************************************************
* Includes
*****************************************************************************/
More information about the vlc-commits
mailing list