- 24 Jun, 2003 1 commit
-
-
Gildas Bazin authored
* src/stream_output/announce.c: inet_pton() isn't supported on win32 so disabled ipv6 sap announces on win32. Wouldn't it be possible to use send() instead of sendto() ? That would simplify the code and get rid of this problem.
-
- 23 Jun, 2003 4 commits
-
-
Cyril Deguet authored
* modules/gui/skin/*: InterfaceRefresh is now triggered by a callback on intf-change
-
Gildas Bazin authored
* modules/demux/util/id3tag.c: small cleanup.
-
Clément Stenac authored
-
Clément Stenac authored
* Code cleanup in SAP
-
- 21 Jun, 2003 1 commit
-
-
Sam Hocevar authored
-
- 20 Jun, 2003 1 commit
-
-
Derk-Jan Hartman authored
-
- 17 Jun, 2003 1 commit
-
-
Cyril Deguet authored
-
- 14 Jun, 2003 1 commit
-
-
Gildas Bazin authored
* src/misc/configuration.c: in config_SaveConfigFile() don't save options that kept their original value (thanks fenrir for the suggestion).
-
- 13 Jun, 2003 1 commit
-
-
Sam Hocevar authored
using our va_list twice, which caused crashes on architectures where va_list is a pointer; we now use va_copy whenever possible.
-
- 12 Jun, 2003 1 commit
-
-
Clément Stenac authored
-
- 09 Jun, 2003 1 commit
-
-
Christophe Massiot authored
In vout_CreatePicture() replace i_repeat_first_field by the more useful i_nb_fields * modules/gui/macosx/intf.m: Fixed a warning * modules/codec/libmpeg2.c include/vout_synchro.h src/video_output/vout_synchro.c: Re-added support for slice-I streams, plus miscellaneous tweakings
-
- 06 Jun, 2003 1 commit
-
-
Derk-Jan Hartman authored
There is a lot of improvement left here.
-
- 05 Jun, 2003 1 commit
-
-
Gildas Bazin authored
* include/vlc_common.h: fixed the I64C() macro for mingw. * src/misc/mtime.c: implemented the heuristic described in http://www.cs.man.ac.uk/fellowsd-bin/TIP/7.html to test whether the win32 performance counter is reliable. That should fix the clock problems that a few users reported on win32.
-
- 31 May, 2003 1 commit
-
-
Eric Petit authored
quite more convenient than, e.g, calling input_SetStatus( STATUS_FASTER ) two times if you want to switch from 1:1 to 4:1 from the interface. Old functions still work. * modules/gui/beos/VlcWrapper.cpp : use it
-
- 28 May, 2003 1 commit
-
-
Derk-Jan Hartman authored
- added "en" to the list of languages in the preferences. - added DIV1, DIV2, i263, WMV1 to video encoding options in prefs. FENRIR: is this correct this way?
-
- 27 May, 2003 3 commits
-
-
Derk-Jan Hartman authored
mem leaks will kernel panic there machine or something ;)A This will generate less bugreports, yet keep them visible to those who should and will care.
-
Eric Petit authored
setsockopt( IP_MULTICAST_TTL ) is done in network/ipvx.c (if supported), so there is no need to do it here again. * modules/gui/beos/* : minor fixes
-
Derk-Jan Hartman authored
-
- 26 May, 2003 2 commits
-
-
Gildas Bazin authored
* modules/audio_output/alsa.c: the aout-device obj var wasn't destroyed properly on probe() failure, preventing other audio plugins from working afterwards. * modules/gui/skins/src/skin_main.cpp: got rid of the skins shortcut. * modules/gui/wxwindows/*: the popupmenu is not created inside the timer anymore so the slider will still be active when the popup is triggered. * modules/video_output/directx/events.c, modules/video_output/x11/xcommon.c, src/playlist/playlist.c: new intf-popupmenu obj var to handle popup context menu requests from the vouts.
-
Clément Stenac authored
only be viewed with the CVS version of VLC
-
- 25 May, 2003 2 commits
-
-
Christophe Massiot authored
enabled version of gettext. (patch courtesy of the DJ)
-
Gildas Bazin authored
* src/video_output/video_output.c, modules/video_output/directx/*, modules/video_output/x11/xcommon.c: fullscreen state is now attached to the input, so it will be remembered even if the vout is restarted (switching filters, dvd menus, etc...). * modules/video_filter/deinterlace/deinterlace.c: small change.
-
- 24 May, 2003 3 commits
-
-
Gildas Bazin authored
* src/misc/variables.c, include/variables.h: first pass at object var inheritance. * rc/video_output/video_output.c, modules/video_filter/deinterlace/deinterlace.c: fixes to the deinterlace object var.
-
Gildas Bazin authored
* src/video_output/video_output.c: new "deinterlace" object variable. * modules/gui/macosx/prefs.m: compilation fix. * modules/gui/wxwindows/menus.cpp: use the "deinterlace" object var. * modules/gui/skins/*: couple of fixes.
-
Derk-Jan Hartman authored
* modules/demux/mp4/mp4.c: added SVQ1 for the quicktime decoder. * modules/gui/macosx/macosx.m: typo * modules/gui/macosx/prefs.m: fix of the module selectors. * po/nl.po: i've taken a head start on the translations. * src/libvlc.h: removed unused string RT_PRIORITY_TEXT
-
- 22 May, 2003 3 commits
-
-
Gildas Bazin authored
* src/libvlc.h: fixed spelling mistake. * modules/gui/wxwindows/preferences.cpp: allow negative numbers in spinctrls. * modules/demux/asf,avi,mp4: use p_input->stream.control.b_mute.
-
Gildas Bazin authored
* src/audio_output/*, src/input/*: fixed the audio desync option. You can use positive as well as negative values.
-
Gildas Bazin authored
* INSTALL.win32: added a small note about running vlc under the msvc debugger. * modules/gui/wxwindows/*: small fixes. * modules/access/vcd/*, modules/access/cdda.c: re-activated autodetection of vcd and cdda on win32. * src/misc/cpu.c, src/stream_output/announce.c: msvc fixes.
-
- 21 May, 2003 4 commits
-
-
Derk-Jan Hartman authored
src/libvlc.c: Added a quicktime_lock on SYS_DARWIN * ALL: QT on OSX is not threadsafe in certain areas. i have found the proces of identifying the right Codec to use for decoding to be one of these areas. So when we do this, only one thread at a time can use QT. Watching QT trailers is doable now, as soon as ffmpeg fix their altivec optimizations again ;)
-
Gildas Bazin authored
* modules/gui/skins/src/vlcproc.cpp: fixed yesterday's breakage. * modules/gui/wxwindows/menus.cpp: fixes for menu auto-generation. * src/video_output/video_output.c: added a "fullscreen" object variable. * modules/video_output/directx/*: added an always-on-top object variable and modified to take into account the fullscreen object variable.
-
Sigmund Augdal Helberg authored
-
Sigmund Augdal Helberg authored
-
- 20 May, 2003 1 commit
-
-
Clément Stenac authored
add sap, or sap="Name" in the stream output options
-
- 19 May, 2003 1 commit
-
-
Gildas Bazin authored
* src/stream_output/stream_output.c, modules/stream_out/duplicate.c: bug fixes for when the stream output duplication fails for whatever reasons.
-
- 18 May, 2003 1 commit
-
-
Laurent Aimar authored
removing this ES from the list of selected ES. So, instead we call input_UnselectES.
-
- 17 May, 2003 2 commits
-
-
Gildas Bazin authored
* include/input_ext-intf.h: forgot this file in my last commit. * src/input/input_programs.c: prev/next-chapter and prev/next-title navigation variables are created only when necessary.
-
Gildas Bazin authored
* configure.ac.in: removed the encoders from the list of plugins as they are not used currently. * src/libvlc.h, modules/audio_filter/resampler/bandlimited.c: added an hq-resampling option to enable/disable the high quality resampling.
-
- 15 May, 2003 2 commits
-
-
Gildas Bazin authored
* src/input/input_programs.c: a few fixes to the navigation object variable.
-
Gildas Bazin authored
* src/input/input_programs.c: implemented prev-title, next-title, prev-chapter and next-chapter object variables. * modules/gui/wxwindows/menus.cpp: put the above variables into the Navigation menu.
-