[vlc-commits] commit: python-vlc: blacklist libvlc_video_set_format_callbacks ( Olivier Aubert )
git at videolan.org
git at videolan.org
Tue Dec 7 21:41:54 CET 2010
vlc/python | branch: master | Olivier Aubert <olivier.aubert at liris.cnrs.fr> | Tue Dec 7 19:09:08 2010 +0100| [94b5d5d94799ba136bd043e847fd5c9e2a1a7fce] | committer: Olivier Aubert
python-vlc: blacklist libvlc_video_set_format_callbacks
> http://git.videolan.org/gitweb.cgi/vlc/python.git/?a=commit;h=94b5d5d94799ba136bd043e847fd5c9e2a1a7fce
---
generate.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/generate.py b/generate.py
index 09356dc..5614567 100755
--- a/generate.py
+++ b/generate.py
@@ -71,6 +71,7 @@ else: # Python 3+
_blacklist = {
'libvlc_set_exit_handler': '', # not in 1.1.5?
'libvlc_video_set_callbacks': '',
+ 'libvlc_video_set_format_callbacks': '',
}
# some constants
@@ -703,6 +704,7 @@ class PythonGenerator(_Generator):
'unsigned*': 'ctypes.POINTER(ctypes.c_uint)', # _video_get_size
'void': 'None',
'void*': 'ctypes.c_void_p',
+ 'void**': 'ListPOINTER(ctypes.c_void_p)',
'WINDOWHANDLE': 'ctypes.c_ulong',
}
More information about the vlc-commits
mailing list