An error occurred fetching the project authors.
  1. 23 Jul, 2003 1 commit
    • Gildas Bazin's avatar
      · eb505a2f
      Gildas Bazin authored
      * ALL: changes to the playlist_Add() and VLC_AddTarget() proto to include a list of options associated with the input.
      * src/input/input.c: parses the input options list before spawning the input and create object variables for these options. Options are of the form "[no[-]]foo[=bar]" where foo is the option name and bar is its value.
      * src/input/input.c, src/input/input_dec.c: use the object var api to get the value of the "sout", "sout-video" and "sout-audio" options.
      * src/libvlc.c: extended the command line parser to parse input options. Input options must always follow the input they apply to and begin with a ':'.
      
      All these changes allow you to specify input specific options.
      eg: ./vlc --no-sout-audio yourvideo.mpeg :sout=udp/http::8080 :sout-audio yourvideo2.mpeg
      Here the ":sout" option will only apply to yourvideo.mpeg.
      "--no-sout-audio" will be a global option so will apply to yourvideo2.mpeg but the global behaviour is overriden by ":sout-audio" for yourvideo.mpeg.
      
      TODO: - the interfaces need to be modified to benefit from the new playlist_Add() api.
            - only "sout", "sout-video", "sout-audio" implemented for now. To make it work with other options, we need to get rid of all the config_GetFoo() and replace them with var_Create()/var_Change()/var_Get().
      eb505a2f
  2. 15 Jun, 2003 1 commit
  3. 08 May, 2003 1 commit
  4. 06 Mar, 2003 1 commit
    • Derk-Jan Hartman's avatar
      * modules/gui/macosx/applescript.? · 9c841645
      Derk-Jan Hartman authored
      * extras/MacOSX/Resources/vlc.scriptSuite
      * extras/MacOSX/Resources/English.lproj/vlc.scriptTerminology
        - moved existing applescript commands to these files
        - added several control commands. supported are: play/pause, stop,
          previous, next, fullscreen, mute, volumeUp and volumeDown.
          These correspond to the existing menuitems. This still requires work
          in the future to make it more correct AppleScript, but it works for now.
      
      * modules/gui/macosx/controls.?
        - split up the controls.m into a .m and a .h
      
      * modules/gui/macosx/intf.?
        - added a getControls method to gain access to the controller object from
          the AppleScript commands.
      
      * modules/gui/macosx/open.?
        - removed the applescript support existing here and moved it to applescript.?
      
      * modules/gui/macosx/playlist.m
        - made the tooltips for the add and remove buttons localizable.
      
      * modules/gui/macosx/vout.m
        - added a comment on the meaning of otherMouse events.
      
      * ALL:
        - updated copyright information to include the current year ;)
      9c841645