An error occurred fetching the project authors.
- 26 Oct, 2002 1 commit
-
-
Simon Latapie authored
-
- 23 Oct, 2002 1 commit
-
-
Gildas Bazin authored
* ALL: New ogg demux and vorbis codec modules for preliminary support of ogg/vorbis streams.
-
- 22 Oct, 2002 1 commit
-
-
Christophe Massiot authored
* Miscellaneous small fixes.
-
- 21 Oct, 2002 1 commit
-
-
Laurent Aimar authored
* modules/demux/asf/*: some clean up
-
- 16 Oct, 2002 1 commit
-
-
Sam Hocevar authored
under platforms without libintl such as Win32. Use --with-included-gettext to test. Might break compilation on systems I don't have access to.
-
- 15 Oct, 2002 2 commits
-
-
Christophe Massiot authored
* Fixed detection of VCD support under OS X.2.
-
Gildas Bazin authored
* modules/access/vcd/*, configure.ac.in: - Major changes to allow reading vcd images directly from the hard drive (you need a .cue and .bin file). - Removed duplicated code by merging ioctl_GetTrackCount and ioctl_GetSectors. - Implemented necessary ioctls for Win9x/NT/2K/XP.
-
- 14 Oct, 2002 2 commits
-
-
Laurent Aimar authored
* wav : demux for wav file( should work with raw pcm, mp3 or a52 stream ) but untested under big endian machine(for pcm). All are compiled by default.
-
Sam Hocevar authored
* ./include/main.h: removed p_vlc->i_status because it was not sufficient to represent all the possible states of p_vlc; each part should be tested separately upon destruction. * ./src/misc/objects.c: fixed a signed/unsigned bug that prevented creation of VLC_OBJECT_GENERIC objects. * ./src/misc/variables.c: added the VLC_VAR_COMMAND type which is simply a variable that stores a function pointer, and calls it when var_Get is called for it. The function argument is taken in val.psz_string. * ./src/misc/objects.c: vlc_dumpstructure and vlc_liststructure are no longer exported to the rest of the program; instead, they're VLC_VAR_COMMAND vars ("tree" and "list"). * ./modules/control/rc/rc.c: moved a few commands to VLC_VAR_COMMAND vars.
-
- 12 Oct, 2002 3 commits
-
-
Gildas Bazin authored
* configure.ac.in: fix for the mingw32 build. The gtk plugin may also need mingwex. * modules/demux/mpeg/ts.c: added an #include <stdint.h> to make mingw32 happy when compiled with libdvbpsi. * Makefile.am: fixed dependency problem with share/vlc_win32_rc.rc.
-
Gildas Bazin authored
* configure.ac.in: fix for the mingw32 build. We check if we need to explicitly link with the mingwex library (needed for dirent support with new mingw32 runtimes).
-
Eric Petit authored
Sound is yet choppy (I don't know why).
-
- 11 Oct, 2002 2 commits
-
-
Sam Hocevar authored
* ./include/vlc/vlc.h: changed the naming conventions for libvlc. Now exported functions start with VLC_ instead of vlc_ to avoid conflicts. * ./include/vlc/vlc.h: removed the vlc_object_t, vlc_list_t, vlc_error_t and vlc_t types; they are now internal types only. * ./include/vlc/vlc.h: merged the reentrant and non-reentrant libvlc calls. In non-reentrant mode, we just use 0 as the first argument. In reentrant mode, we use an object's ID. (see below) Internal changes: * ./src/libvlc.c, ./src/misc/objects.c: instead of manipulating vlc_object_t pointers, we manipulate their i_object_id. When needed, an object is retrieved using vlc_object_get (I hope the lookup isn't too expensive, that's why I designed the pp_objects layout to allow log2(n) seeks). * ./src/misc/objects.c: activated the per-object variable storage. Unused yet, unless you want to try "getfoo" and "setfoo blablah" in vlc -I rc. * ./include/vlc_objects.h: moved the vlc_object_t and vlc_list_t definitions here. Misc: * ./src/vlc.c, ./mozilla/vlcshell.cpp: removed inclusion of config.h in code portions not part of libvlc; it was just required for the COPYRIGHT_MESSAGE string which is now available from VLC_Version().
-
Gildas Bazin authored
* src/misc/modules.c: fixed a memory leak with the "plugin-path" config option. * modules/audio_output/directx.c, modules/audio_output/waveout.c: ported the directx and waveout audio plugins to the new changes in the audio output layer. * configure.ac.in: fixes for cygwin compilation, and the gtk plugin under mingw32.
-
- 10 Oct, 2002 1 commit
-
-
Sam Hocevar authored
set variable values (ash doesn't have typeset).
-
- 06 Oct, 2002 1 commit
-
-
Gildas Bazin authored
* configure.ac.in: vlc can now be built under cygwin with or without the unix emulation layer (without if you use CC="gcc -mno-cygwin"). * INSTALL.win32: doc update for cygwin build. * modules/video_output/directx/events.c, modules/video_output/directx/directx.c, modules/audio_output/directx.c: compilation fixes for cygwin.
-
- 05 Oct, 2002 1 commit
-
-
Gildas Bazin authored
* ALL: Splitted the directx plugin into an audio and video module.
-
- 04 Oct, 2002 3 commits
-
-
Sam Hocevar authored
* ./src/misc/objects.c: structure_lock is now local. * ./src/misc/threads.c: implemented named mutexes which provide a handy way to protect data across plugins which might be sharing the same resources. Thread-unsafe libraries come to mind, but we can imagine using a named mutex for configuration files, or special devices. * ./include/main.h: removed global_lock because of vlc_mutex_need, removed p_global_data because it was never used, removed structure_lock because it did not belong here.
-
Sam Hocevar authored
* ./modules/misc/testsuite/*: moved the null module into three test modules that are only built when --enable-testsuite is activated. This directory can be a good place for compilation tests or performance benchmarks.
-
Gildas Bazin authored
* src/misc/threads.c, src/misc/win32_specific.c, include/interface.h: fixed typos. * configure.ac.in, modules/gui/gtk/gtk.c: Added a NEED_GTK_MAIN macro to the compiler flags for the gtk module. When this macro isn't defined, then the gtk module doesn't make use of the gtk_main module. I had to do this change because the gtk_main trick can't work on win32 and render the whole gtk interface unusable.
-
- 03 Oct, 2002 2 commits
-
-
Sam Hocevar authored
locales breakage. * ./src/libvlc.c: libvlc understands the VLC_VERBOSE environment variable, to be set between 0 and 4. Default value is 0 for a program using libvlc, but vlc sets it to 1 by default. * ./src/misc/configuration.c: -v now works the old way (-v, -vv, -vvv) as well as the new way (-v0, -v1, -v4). -v1 is the same as -v, and -v0 is the same as -q (quiet). Hope it's all understandable.
-
Gildas Bazin authored
* FAQ: updated FAQ with config file issues. * configure.ac.in: use -mms-bitfields instead of -fnative-struct for mingw32 gcc-3.x. * include/interface.h, modules/misc/dummy/interface.c, modules/misc/logger/logger.c, modules/control/rc/rc.c: Display message on Win32 explaining how to get back to the GUI mode. * src/misc/threads.c, include/vlc_threads_funcs.h: ignore the win9x-cv-method config option on WinNT when fast-mutex is not enabled.
-
- 02 Oct, 2002 3 commits
-
-
Sam Hocevar authored
-
Sam Hocevar authored
-
Sam Hocevar authored
(always re-run bootstrap when configure.ac.in has changed).
-
- 30 Sep, 2002 2 commits
-
-
Eric Petit authored
Playlist is yet broken (maybe others things too)
-
Sam Hocevar authored
* ./mozilla/vlcplugin.cpp: javascript support for the Mozilla plugin. * debian/rules: the A52 module is now in a separate package.
-
- 25 Sep, 2002 1 commit
-
-
Jean-Paul Saman authored
-
- 23 Sep, 2002 1 commit
-
-
Jean-Paul Saman authored
Video output for QT embedded compiles. There are still some linking issues to fix, before it is usable.
-
- 20 Sep, 2002 1 commit
-
-
Christophe Massiot authored
* First hooks for changing the audio output plug-in and its parameters on-the-fly.
-
- 18 Sep, 2002 2 commits
-
-
Christophe Massiot authored
* configure.in: Fixed a typo.
-
Henri Fallon authored
-
- 17 Sep, 2002 1 commit
-
-
Sam Hocevar authored
javascript. It's also in C++, but we didn't have the choice.
-
- 16 Sep, 2002 1 commit
-
-
Christophe Massiot authored
* modules/codec/a52.c: Fixed detection of A/52 sound. * modules/audio_filter/converter/a52tofloat32.c: Fixed a bug related to downmixing. * ALL: Added hooks for audio volume management.
-
- 15 Sep, 2002 1 commit
-
-
Jean-Paul Saman authored
Porting video out plugin/builtin for Qt Embedded to CVS is not complete. (Please do not use it.)
-
- 09 Sep, 2002 1 commit
-
-
Sam Hocevar authored
dependencies in debian/control.
-
- 04 Sep, 2002 1 commit
-
-
Jean-Paul Saman authored
Reused --enable-qte for Video Out support under Qt Embedded.
-
- 02 Sep, 2002 1 commit
-
-
Christophe Massiot authored
autodetect S/PDIF hardware support and the audio output plug-in chooses the best one. Of course it probably breaks existing output modules, see oss.c for hints :). Also include minor tweaks which will entitle us to decode and output 5.1 audio. It may break existing plug-ins, too. See audio_output.c:aout_FormatNbChannels for hints.
-
- 30 Aug, 2002 1 commit
-
-
Sam Hocevar authored
might break the HP/UX or Solaris ports, please check if possible. * ./src/misc/threads.c: fixed syntax in the st and pth implementations.
-
- 28 Aug, 2002 1 commit
-
-
Christophe Massiot authored
* Reactivated the A/52 demux. * Wrote a real full-featured float32 mixer.
-