Commit fed5de25 authored by Olivier Aubert's avatar Olivier Aubert

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).
parent 5d01cf93
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment