1 Description: Upstream patch to re-add mouse click support
2 Author: Michael Lamothe <michael.lamothe@gmail.com>
3 Applied-Upstream: http://bazaar.launchpad.net/~lamothe/gnome-media-player/0.2-new/revision/112
4 --- a/src/vlc_engine.cc
5 +++ b/src/vlc_engine.cc
8 g_debug("linear deinterlacer");
9 vlc_argv[i++] = "--vout-filter=deinterlace";
10 - vlc_argv[i++] = "--deinterlace-mode=linear";
11 + vlc_argv[i++] = "--deinterlace-mode=blend";
18 instance = libvlc_new (i, vlc_argv);
21 media_player = libvlc_media_player_new(instance);
22 + libvlc_video_set_mouse_input(media_player, false);
23 libvlc_audio_set_volume(media_player, DEFAULT_VOLUME);
25 event_manager = libvlc_media_player_event_manager(media_player);