Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv23190

Modified Files:
        event.py 
Log Message:
Bugfix for missing 'menu' button; it was here before, and it was removed
for some reason.

Most DVDs have multiple menus, but not all DVDs have a TitleMenu, so under
the previous event structure, you could only move to the topmost menu, and
only if it was designated as such.

This patch allows the old behaviour (from when I first implemented code to
support Dischi's Xine patches) which works with more DVDs.


Index: event.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/event.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** event.py    19 Oct 2003 16:15:51 -0000      1.27
--- event.py    23 Oct 2003 02:26:52 -0000      1.28
***************
*** 10,13 ****
--- 10,24 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.28  2003/10/23 02:26:52  outlyer
+ # Bugfix for missing 'menu' button; it was here before, and it was removed
+ # for some reason.
+ #
+ # Most DVDs have multiple menus, but not all DVDs have a TitleMenu, so under
+ # the previous event structure, you could only move to the topmost menu, and
+ # only if it was designated as such.
+ #
+ # This patch allows the old behaviour (from when I first implemented code to
+ # support Dischi's Xine patches) which works with more DVDs.
+ #
  # Revision 1.27  2003/10/19 16:15:51  rshortt
  # Added OS_EVENT_KILL.  recordserver will now kill and wait.
***************
*** 357,361 ****
      'REW'       : Event(SEEK, arg=-10),
      'FFWD'      : Event(SEEK, arg=10),
!     'MENU'      : DVDNAV_TITLEMENU,
      'VOL+'      : MIXER_VOLUP,
      'VOL-'      : MIXER_VOLDOWN,
--- 368,373 ----
      'REW'       : Event(SEEK, arg=-10),
      'FFWD'      : Event(SEEK, arg=10),
!     'GUIDE'     : DVDNAV_TITLEMENU,
!     'MENU'      : DVDNAV_MENU,
      'VOL+'      : MIXER_VOLUP,
      'VOL-'      : MIXER_VOLDOWN,




-------------------------------------------------------
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to