Commit e281e731 authored by Stéphane Borel's avatar Stéphane Borel

Maybe solved the jump-at-will bug after random seek.

parent a0c1805b
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* -dvd_udf to find files * -dvd_udf to find files
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: input_dvd.c,v 1.32 2001/03/15 00:37:04 stef Exp $ * $Id: input_dvd.c,v 1.33 2001/03/15 16:29:47 stef Exp $
* *
* Author: Stphane Borel <stef@via.ecp.fr> * Author: Stphane Borel <stef@via.ecp.fr>
* *
...@@ -1072,7 +1072,7 @@ static void DVDSeek( input_thread_t * p_input, off_t i_off ) ...@@ -1072,7 +1072,7 @@ static void DVDSeek( input_thread_t * p_input, off_t i_off )
} }
p_dvd->i_prg_cell = i_prg_cell; p_dvd->i_prg_cell = i_prg_cell;
p_dvd->i_cell = i_cell - 1; /* DVDFindSector will add one */ p_dvd->i_cell = i_cell; /* DVDFindSector will add one */
/* check coherence of data */ /* check coherence of data */
DVDFindSector( p_dvd ); DVDFindSector( p_dvd );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf_gnome.c: Gnome interface * intf_gnome.c: Gnome interface
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: intf_gnome.c,v 1.22 2001/03/15 01:42:19 sam Exp $ * $Id: intf_gnome.c,v 1.23 2001/03/15 16:29:47 stef Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -569,8 +569,8 @@ static gint GnomeTitleMenu( gpointer p_data, ...@@ -569,8 +569,8 @@ static gint GnomeTitleMenu( gpointer p_data,
if( pf_toggle == on_menubar_title_toggle ) if( pf_toggle == on_menubar_title_toggle )
{ {
gtk_check_menu_item_set_active( GTK_CHECK_MENU_ITEM( p_title_item ), // gtk_check_menu_item_set_active( GTK_CHECK_MENU_ITEM( p_title_item ),
b_active ); // b_active );
/* setup signal hanling */ /* setup signal hanling */
gtk_signal_connect( GTK_OBJECT( p_title_item ), gtk_signal_connect( GTK_OBJECT( p_title_item ),
"toggled", "toggled",
...@@ -597,8 +597,8 @@ static gint GnomeTitleMenu( gpointer p_data, ...@@ -597,8 +597,8 @@ static gint GnomeTitleMenu( gpointer p_data,
GTK_RADIO_MENU_ITEM( p_item ) ); GTK_RADIO_MENU_ITEM( p_item ) );
gtk_menu_append( GTK_MENU( p_chapter_menu ), p_item ); gtk_menu_append( GTK_MENU( p_chapter_menu ), p_item );
gtk_widget_show( p_item ); gtk_widget_show( p_item );
gtk_check_menu_item_set_active( // gtk_check_menu_item_set_active(
GTK_CHECK_MENU_ITEM( p_item ), b_active ); // GTK_CHECK_MENU_ITEM( p_item ), b_active );
/* setup signal hanling */ /* setup signal hanling */
gtk_signal_connect( GTK_OBJECT( p_item ), gtk_signal_connect( GTK_OBJECT( p_item ),
......
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