1. 28 Mar, 2002 1 commit
    • Johan Bilien's avatar
      · 6ce92ec7
      Johan Bilien authored
      * When unselecting an ES, we must ged rid of p_es->p_pes so that it is
        regererated when we select this ES again. It made vlc segfault when
        switching from some stream to another, or when switching program
        in satellite input.
      6ce92ec7
  2. 27 Mar, 2002 5 commits
  3. 26 Mar, 2002 7 commits
    • Christophe Massiot's avatar
      * GNU make detection · 9e82d79b
      Christophe Massiot authored
      * Deleted non-working fullscreen menu item [OS X]
      * udp and http no longer modify p_input->psz_name
      9e82d79b
    • Gildas Bazin's avatar
      · 5322a29b
      Gildas Bazin authored
      * various little portability fixes
      5322a29b
    • Gildas Bazin's avatar
      · 2867bb65
      Gildas Bazin authored
      * modified the gtk interface to save an empty <string> option as a NULL pointer
      * modified config_LoadConfigFile to consider an empty <string> option as a
         NULL pointer.
      2867bb65
    • Gildas Bazin's avatar
      · 09b7f775
      Gildas Bazin authored
      * changed the behaviour of the config file:
        - now all the config options are saved. <string> config options which have
        no default value are also saved in the config file but as an empty string.
        - config_LoadConfigFile will ignore empty config options, which also means
        we cannot pass an empty string as a <string> config option. (this shouldn't
        matter anyway)
      09b7f775
    • Loïc Minier's avatar
      plugins/gtk/gtk_preferences.c: · f8ebcf98
      Loïc Minier authored
        . save button (inadvertently suppressed)
      f8ebcf98
    • Olivier Teulière's avatar
      · 9d3112e4
      Olivier Teulière authored
       * plugins/win32:
              - added toolbar icons (thanks xav)
              - we can no longer edit plugin names in the preferences :)
              - the tool button for playlist is now a toggle button
      9d3112e4
    • Tony Castley's avatar
      bd5f3062
  4. 25 Mar, 2002 6 commits
    • Olivier Teulière's avatar
      · 8092e418
      Olivier Teulière authored
       * Added a win32 interface plugin, developed with Borland C++ Builder.
         To build the plugin, follow the instructions in INSTALL-win32.txt
      
       * Known bugs:
              - subtitles don't work
              - a crash occurs when the user exits by pressing 'q' in the vout
              - when moving the slider, position in the stream updates even if
                the slider isn't released yet
      
       * TODO list:
              - clean code in menu.cpp
              - adapt lool's enhancements of the Gtk+ preferences box
              - write drag-and-drop stuff
              - and of course, fix known bugs :)
      
       * For those of you who can't wait till the next release to test the win32
         interface, binary files are available here:
         http://www.via.ecp.fr/~ipkiss/intfwin/vlc.zip
         Enjoy!
      8092e418
    • Loïc Minier's avatar
      plugins/gtk/gtk_preferences.c: · b1afd5e6
      Loïc Minier authored
        . fixed an ugly structure
        . the tabs are not verticaly expanded as they were
        . small enhancements
      b1afd5e6
    • Loïc Minier's avatar
      The "we love gibalou" commit : · b1e4fd1c
      Loïc Minier authored
        * plugins/gtk/gnome.c, plugins/gtk/gtk.c, plugins/gtk/gtk_common.h :
            . new Tooltips structure
        * plugins/gtk/gtk_preferences.c:
            . modifications of some widgets, the structure, cosmetic changes
        * src/interface/main.c:
            . typos
            . a couple new descriptions
      b1e4fd1c
    • Gildas Bazin's avatar
      · 2feb20f8
      Gildas Bazin authored
      * moved the "display" option from main to the relevant plugins. ( We now have
         the x11_display, xvideo_display, xmga_display and ggi_display options ).
      2feb20f8
    • Sam Hocevar's avatar
      · 07197c19
      Sam Hocevar authored
        * Fixed a little omission in INSTALL-win32.txt.
      07197c19
    • Johan Bilien's avatar
      · 038f77ed
      Johan Bilien authored
      * Fixed a bug that made vlc segfault when choosing a program, change to
        another and come back to the first one.
      * Added gtk and gnome interfaces for satellite input. We should find a
        way to hide the button if satellite support is not compiled.
      038f77ed
  5. 22 Mar, 2002 4 commits
  6. 21 Mar, 2002 5 commits
    • Christophe Massiot's avatar
      022983ea
    • Gildas Bazin's avatar
      · c6f900e1
      Gildas Bazin authored
      * the calculation for the initial video window dimensions is now done in
          video_output.c and made available into p_vout->i_window_height/width.
          This allows to get rid of duplicated code and unify the behaviour of
          the video output plugins. (not all the plugins have been modified
          because I didn't want to break anything).
      
          As a side effect, the --width and --height options are now working, you
          can even use only --width or only --height the other dimension will adapt
          automatically to the video characteristics.
          Note that you need to remove the width/height options from the config file
          or set them to -1 if you want to use the actual video size.
      c6f900e1
    • Gildas Bazin's avatar
      · fb3f8ba5
      Gildas Bazin authored
      * moved GetConfigurationFromCmdLine() into configuration.c and renamed it
         into config_LoadCmdLine()
      * config_GetHomeDir doesn't use getpwuid_r anymore as this was creating
         some problems on solaris. This function now uses getpwuid and is called
         only once to store the home directory into the p_main structure.
      fb3f8ba5
    • Johan Bilien's avatar
      · 6194c61e
      Johan Bilien authored
      Forgot to add the input files.
      6194c61e
    • Johan Bilien's avatar
      *** empty log message *** · 6d7c2261
      Johan Bilien authored
      6d7c2261
  7. 20 Mar, 2002 7 commits
    • Gildas Bazin's avatar
      · 313043fe
      Gildas Bazin authored
      * fixed stupid bug in stupid ConvertPrintfFormatString() function
      * fixed the "waveout not closing" bug. We need to reset the waveout device
          before closing it.
      313043fe
    • Sam Hocevar's avatar
      · 3939be7d
      Sam Hocevar authored
        * ./src/input/mpeg_system.c: fixed a bus error on UltraSparc.
      3939be7d
    • Sam Hocevar's avatar
      · cd437524
      Sam Hocevar authored
        * Win32 and Solaris compilation fix.
      cd437524
    • Tony Castley's avatar
      Improved scaling, correct aspect ratio even in full screen mode. · 239e959a
      Tony Castley authored
      Duplicate code reduces and framework for Overlay and OpenGL modes in place.
      239e959a
    • Sam Hocevar's avatar
      · e6315659
      Sam Hocevar authored
        * ./src/misc/modules_plugin.h: kludge to allow the ALSA module to be
          compiled as a plugin. Please test.
        * ./include/modules.h: fixed a C++ warning.
      e6315659
    • Olivier Teulière's avatar
      · e2de855a
      Olivier Teulière authored
       * Added 3 bugs of the win32 port to the BUGS file
      e2de855a
    • Johan Bilien's avatar
      · c581b387
      Johan Bilien authored
      * Raw device fix, courtesy of Steven Schultz
      c581b387
  8. 19 Mar, 2002 5 commits