- 20 Mar, 2002 5 commits
-
-
Sam Hocevar authored
* Win32 and Solaris compilation fix.
-
Tony Castley authored
Duplicate code reduces and framework for Overlay and OpenGL modes in place.
-
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.
-
Olivier Teulière authored
* Added 3 bugs of the win32 port to the BUGS file
-
Johan Bilien authored
* Raw device fix, courtesy of Steven Schultz
-
- 19 Mar, 2002 11 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
call).
-
Johan Bilien authored
* fixed some bugs in program management : selected ESs must be attached to the selected program.
-
Sam Hocevar authored
* ./plugins/aa: aalib output plugin courtesy of Sigmund Augdal. * ./configure.in: fixed a few bashisms. * ./src/misc/configuration.c: fixed build under Solaris. * ./TODO: updated todo list.
-
Gildas Bazin authored
* fixed two memory leaks * fixed typo in waveout.c
-
Sam Hocevar authored
* ./configure.in: BeOS compilation fixes. * ./debian/rules: activated (broken) KDE interface. * ./plugins/access/http.c: fixed a segfault. * ./plugins/alsa/aout_alsa.c: fixed a segfault.
-
Olivier Teulière authored
* ./include/common.h: fixed the compilation fix for Borland C++ :)
-
Sam Hocevar authored
* ./include/common.h: compilation fix for Borland C++.
-
Jon Lech Johansen authored
* Various MacOS X intf improvements and bug fixes
-
Sam Hocevar authored
* ./plugins/chroma/i420_rgb8.c: fixed a warning. * ./plugins/filter/deinterlace.c: fixed chroma deinterlacing. * ./plugins/kde/kde.cpp: the KDE interface compiles again. * ./plugins/mpeg_system/mpeg_es.c: fixed a segfault I introduced today. * ./plugins/network/ipv4.c: cosmetic fix. * ./src/interface/main.c: fixed a typo in the --help output. * ./src/misc/netutils.c: fixed a segfault in the vlcs communication; still unstable but solving other bugs won't do any good without rewriting the whole playlist code. Which I'm doing right now.
-
Christophe Massiot authored
-
- 18 Mar, 2002 4 commits
-
-
Xavier Marchesini authored
* skip "//" if we find "://" in a resource we have to play : this allows us to use the syntax udpstream://host.
-
Sam Hocevar authored
* ./extras/MacOSX_dvdioctl: removed outdated files. * ./plugins/fx/scope.c: fixed an infinite loop error. * ./plugins: fixed segfaults in various demux plugins. * ./plugins/sdl/vout_sdl.c: SDL_VIDEODRIVER can be specified from the command line; try "--vout sdl:aalib"
-
Sam Hocevar authored
* ./configure.in: fixed linking of the ipv4 plugin.
-
Xavier Marchesini authored
* DirectX plugin is now correctly detected and configured.
-
- 17 Mar, 2002 5 commits
-
-
Sam Hocevar authored
* ./BUGS: updated bug list. * ./configure.in: ./configure --help should be a lot clearer now.
-
Sam Hocevar authored
* ./plugins/chroma/i420_rgb8.c: plain C 8 bpp transformation. * ./plugins/chroma/i420_rgb16.c: plain C 24/32 bpp transformations. * ./plugins/ggi/ggi.c: support for 8 bpp displays. * ./plugins/sdl/vout_sdl.c: support for 8 bpp displays. * ./plugins/x11/xcommon.c: support for 8 bpp displays. * ./src/video_output/video_output.c: fixed a segfault.
-
Gildas Bazin authored
* added an alternate fullscreen method. With this method, _nothing_ is allowed to be displayed on top of the video (especially not taskbars, etc...). Of course this can also be annoying sometimes, this is why it's an option. PS: does anybody know how not to propagate the Ctrl-Alt-Tab key event to the window manager. I tryed XChangeWindowAttributes with do_not_propagate_mask but it doesn't seem to work.
-
Gildas Bazin authored
* small fix for the config file. The parser assumes that the config file is divided into sections (a section is the config data for a plugin and begins with something like [foo]), so the comment for the beginning of the section must be after the section marker and not before. If you want to illustrate the problem (without this fix): - save vlc's config - exit from vlc and remove for example the dsp plugin (rm plugins/dsp.so) - resave vlc's config and now look at the end of the config file, it's all screwed up.
-
Tony Castley authored
Video window now returns to correct size and position after toggling full screen.
-
- 16 Mar, 2002 2 commits
-
-
Sam Hocevar authored
* ./configure.in: more modules are plugins. * ./src/misc/configuration.c: changed ~/.VideoLan/vlc to ~/.videolan/vlcrc, and a few cosmetic changes (sorry Gildas for the butchery). * ./plugins/chroma/i420_rgb16.c: C version of the I420 to RV15/16 chroma.
-
Gildas Bazin authored
* This the last piece of the new configuration module. You can now save your configuration options (only from the gtk/gnome interface for now). The config file will be saved as ~/.VideoLan/vlc It's not quite yet finished (well there are a few small details to sort out), but I'm going away for the week-end and I wanted to commit this before so you can all have a play with it :)
-
- 15 Mar, 2002 5 commits
-
-
Sam Hocevar authored
* ./plugins/spudec/spu_decoder.c: we now analyze the subtitle image data to find the border color and the inner colors when there was no way to find the palette data (network stream).
-
Sam Hocevar authored
* ./plugins/mpeg_system: fixed a parsing bug I introduced yesterday.
-
Sam Hocevar authored
* ./Makefile: fixed OS X vlc.app compilation dependencies. * ./configure.in: fixed the endianness check under Solaris. * ./src/input/input.c: strings are now initialized to "" instead of NULL. * ./plugins/spudec/spu_decoder.c: we now properly support the subtitle palette information we get from the DVD. Subtitles rox ! * ./src/video_output/vout_subpictures.c: removed all DVD-specific routines and put them into spu_decoder.c.
-
Stéphane Borel authored
*Move iec958/spdif encapsulation from ac3_spdif to aout_spdif. It will eventually allows to use ac3_adec or a52 for spdif output. *Remove an ugly loop in aout_spdif.
-
Stéphane Borel authored
-Fixed chapter selection at startup.
-
- 14 Mar, 2002 1 commit
-
-
Stéphane Borel authored
*p_es->p_demux_data is available in p_config->p_demux_data so that the input can pass information directly to the decoder. *First application: aspect ratio for DVD is read from the ifo (should fix the buf with aspect ratio in anamorphic DVDs). *The DVD plugin also copy the spu yuv palette in p_demux_data so that the spudec can display subtitle with the right color (sam !). *Removed duplicate code and useless lock in gtk.
-
- 13 Mar, 2002 3 commits
-
-
Johan Bilien authored
* Fixed EOF and Stop segfault in VCD input : input_BuffersEnd was being called two times
-
Tony Castley authored
-
Tony Castley authored
-
- 12 Mar, 2002 2 commits
-
-
Gildas Bazin authored
* a52 plugin updated to use liba52-0.7.3 ( which is now available on debian :)
-
Stéphane Borel authored
*New configuration option to choose audio output format at runtime. It allows to select spdif pass-through decoder with --ac3_adec and to remove the ugly b_ac3 in main.h As a consequence --spdif doesn't work anymore: you should use --ac3_adec pass *Fixed a typo in main.c *Return the option name in error message for unknown option intead of the argument.
-
- 11 Mar, 2002 2 commits
-
-
Gildas Bazin authored
* gtk config interface modified so you can only have one instance of a plugin config dialog box displayed at one time.
-
Gildas Bazin authored
* oops, forgot to check the gnome interface before my last commit.
-