- 27 Jul, 2003 4 commits
-
-
Gildas Bazin authored
* modules/audio_output/alsa.c: bail out if the device is already in use.
-
Gildas Bazin authored
* src/input/input_ext-plugins.c: forgot to re-lock a mutex.
-
Christophe Massiot authored
- there should be fewer resampling, particularly on DVD chapter changes - when you unpause a DVD, VLC will wait for the drive to spin up, so you won't lose several seconds of movies * modules/gui/macosx/controls.m: Seeking in paused mode resumes the play mode, make the interface take that into account.
-
Olivier Teulière authored
-
- 26 Jul, 2003 6 commits
-
-
Eric Petit authored
-
Gildas Bazin authored
* modules/gui/skins/controls/checkbox.cpp: compilation fix.
-
Laurent Aimar authored
-
Gildas Bazin authored
* modules/gui/wxwindows/open.cpp: move the "open subtitles" line into the file panel.
-
Olivier Teulière authored
value was always true...)
-
Gildas Bazin authored
* modules/gui/wxwindows/open.cpp: workaround design problems in wxSpinCtrl (wxSpinCtrl::GetValue() triggers a value update event).
-
- 25 Jul, 2003 7 commits
-
-
Gildas Bazin authored
* modules/gui/wxwindows/*: fixed clean-up of the dialogs provider on exit. * modules/gui/skins/x11/*: proper initialization of a global var so we can start/exit the skins interface several times.
-
Gildas Bazin authored
* INSTALL.win32: updated build instructions (btw since the last build changes, mingw+msys can be used again to compile VLC). * modules/gui/wxwindows/wxwindows.cpp: oops.
-
Gildas Bazin authored
* msvc/vlc.dsw: relaced basic_skins plugin with the skins one.
-
Gildas Bazin authored
* modules/gui/wxwindows/*: a couple of compilation fixes for wxWindows cvs.
-
Derk-Jan Hartman authored
-
Derk-Jan Hartman authored
-
Derk-Jan Hartman authored
* Updated it.po
-
- 24 Jul, 2003 11 commits
-
-
Gildas Bazin authored
* modules/gui/wxwindows/wxwindows.cpp: temporary hack (I hope ;) to fix win32 compilation with wxWindows < 2.5.
-
Gildas Bazin authored
* src/misc/modules.c: if module_Need() was passed an interface module name, respect this choice even if vlc was run with a specific interface shortcut.
-
Sam Hocevar authored
+ Removed my name from this file, I didn't contribute anything major to it. + Added strerror(errno) where adequate, as well as additional debug information, hopefully more useful than "cannot open".
-
Gildas Bazin authored
* modules/gui/wxwindows/*: you can now specify input options in the stream output MRL as well. * modules/misc/freetype.c: bail out if no font has been specified. * modules/demux/util/sub.h: don't forget to detach the demuxsub object.
-
Sam Hocevar authored
+ Run autopoint with the -f flag. + Remove stamp files in the bootstrap process.
-
Sigmund Augdal Helberg authored
A little better line spaceing, but I still don't understand what this is all about.
-
Sigmund Augdal Helberg authored
with just a few lines in between, but in separate #if cases.
-
Benjamin Pracht authored
* fix a segfault when "/dev/video0" or "norm=" were last arguments of the command line
-
Benjamin Pracht authored
* shows a warning if frequency is in "previous syntax range"
-
Gildas Bazin authored
* modules/gui/wxwindows/open.cpp: compilation fix.
-
Gildas Bazin authored
The stream output and subtitles options use them and you can also add options in the MRL itself.
-
- 23 Jul, 2003 11 commits
-
-
Gildas Bazin authored
* modules/misc/freetype.c, modules/demux/util/sub.c: cleanup. * modules/demux/util/sub.h: thou shall do a vlc_object_attach(). * src/misc/variables.c: added VLC_VAR_FILE and VLC_VAR_DIRECTORY inheritance support.
-
Christophe Massiot authored
-
Jean-Paul Saman authored
-
Gildas Bazin authored
* include/variables.h, src/misc/variables.c: you can now use var_Create() directly to create an object variable with an inherited value. eg. var_Create( p_vout, "zoom", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); Beware, the object in which you create the var must be attached to a parent for this to work (otherwise we can't navigate the parents hierarchy to find the value to inherit). * src/input/input.c, src/input/input_programs.c, src/video_output/video_output.c: converted more config_GetFoo() into var_Create()/var_Get();
-
Derk-Jan Hartman authored
latter everywhere. * modules/demux/util/sub.c: Bring the config options in here to the variable structure. * modules/misc/freetype.c: Bring the config options in here to the variable structure. Fix the linespacing. Dnumgis, it works, just define another linespacing :)
-
Eric Petit authored
-
Olivier Teulière authored
forgotten
-
Cyril Deguet authored
-
Jean-Paul Saman authored
When recv() returns -1 a bug is triggered inside RTPRead() and RTPChoose(). The return value of Read() is then -1. The test "if (!i_ret) return 0;" will be false and the function will continue resulting in segfault while copying from buffers that are in an undetermined state. The correct test is "if (i_ret<0) return 0;".
-
Gildas Bazin authored
* modules/misc/sap.c: oops, compilation fix.
-
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().
-
- 22 Jul, 2003 1 commit
-
-
Derk-Jan Hartman authored
-