]> git.sesse.net Git - vlc/commit
*initialization bugfixes in input_dvd
authorStéphane Borel <stef@videolan.org>
Tue, 15 May 2001 01:01:44 +0000 (01:01 +0000)
committerStéphane Borel <stef@videolan.org>
Tue, 15 May 2001 01:01:44 +0000 (01:01 +0000)
commit9530fc9f8c7ab5391974c69e019a68bd9227738b
tree38ab3e4e0d778790bef1584a49fa6c81f0be8d23
parentdb7b0421d56a60916f852b811d1b9914d84b15d2
*initialization bugfixes in input_dvd

*added a b_stopped flag to interface playlist to have a stop function in
interface plugins. As a consequence, the playlist no longer loops on end
but wait for the user to press 'play' or to add another item (gtk/gnome
interface). I think that other plugins are broken but it shouldn't be
difficult to repair: just add a 'p_main->p_playlist->b_stopped = 0' in
play functions and 'p_main->p_playlist->b_stopped = 1' when you have to
stop.

*Updated gtk interface so that it has the same features as gnome. I
think I will merge the code so that we don't have to copy and paste each
change. Only the .glade file would be different.
31 files changed:
include/intf_playlist.h
plugins/dvd/input_dvd.c
plugins/gnome/gnome_callbacks.c
plugins/gnome/gnome_callbacks.h
plugins/gnome/gnome_interface.c
plugins/gnome/gnome_playlist.c
plugins/gnome/intf_gnome.c
plugins/gnome/intf_gnome.glade
plugins/gtk/Makefile
plugins/gtk/gtk_callbacks.c
plugins/gtk/gtk_callbacks.h
plugins/gtk/gtk_control.c [new file with mode: 0644]
plugins/gtk/gtk_control.h [new file with mode: 0644]
plugins/gtk/gtk_interface.c
plugins/gtk/gtk_interface.h
plugins/gtk/gtk_menu.c [new file with mode: 0644]
plugins/gtk/gtk_menu.h [new file with mode: 0644]
plugins/gtk/gtk_modules.c [new file with mode: 0644]
plugins/gtk/gtk_modules.h [new file with mode: 0644]
plugins/gtk/gtk_open.c [new file with mode: 0644]
plugins/gtk/gtk_open.h [new file with mode: 0644]
plugins/gtk/gtk_playlist.c
plugins/gtk/gtk_playlist.h
plugins/gtk/gtk_preferences.c [new file with mode: 0644]
plugins/gtk/gtk_preferences.h [new file with mode: 0644]
plugins/gtk/intf_gtk.c
plugins/gtk/intf_gtk.glade
plugins/gtk/intf_gtk.h
src/audio_output/aout_spdif.c
src/interface/interface.c
src/interface/intf_playlist.c