1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-14 21:25:09 +02:00

bindings/python/vlc_input.c: update to match

libvlc_video_take_snapshot API change (it would be nice to grep the
VLC source, or at least the bindings directory, for the symbol when
doing such a change).
This commit is contained in:
Olivier Aubert 2008-01-03 18:51:36 +00:00
parent 5d01cf9357
commit fed5de25e1

View File

@ -296,7 +296,7 @@ vlcInput_video_take_snapshot( PyObject *self, PyObject *args )
return NULL;
LIBVLC_TRY;
libvlc_video_take_snapshot( LIBVLC_INPUT->p_md, psz_filename, &ex);
libvlc_video_take_snapshot( LIBVLC_INPUT->p_md, psz_filename, 0, 0, &ex);
LIBVLC_EXCEPT;
Py_INCREF( Py_None );
return Py_None;