An error occurred fetching the project authors.
- 23 Jul, 2003 1 commit
-
-
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().
-
- 01 Jul, 2003 1 commit
-
-
Sam Hocevar authored
conflicts. Most headers in that directory should probably be renamed to their vlc_ equivalent.
-
- 15 May, 2003 1 commit
-
-
Christophe Massiot authored
* ALL: Capitalize all preferences text strings
-
- 13 May, 2003 1 commit
-
-
Gildas Bazin authored
* modules/control/rc/rc.c: win32 fixes for the handling of special control keys.
-
- 05 May, 2003 1 commit
-
-
Gildas Bazin authored
* ALL: changed the prototype of input_AddES() to include enough information so we can build an "video-es", "audio-es" and "spu-es" object variable. These variables can be used by the interfaces to navigate between the elementary streams. * modules/gui/wxwindows/menus.cpp: use the "foo-es" object variables.
-
- 04 May, 2003 1 commit
-
-
Gildas Bazin authored
* src/misc/variables.c, ALL: improvements to the object variables api. - added another argument to var_Change(). - added a VLC_VAR_SETTEXT and VLC_VAR_GETTEXT method to var_Change() that are used to set/get a friendly name to an object variable. - added VLC_VAR_CHOICESCOUNT to var_Change() to be able to retrieve the number of availabel choices without having to get their value as well. - VLC_VAR_ADDCHOICE uses the extra var_Change() argument to assign a friendly name to the choice value. - VLC_VAR_GETCHOICES retrieves the choices values and their friendly names. * modules/gui/wxwindows/*: first step in implementing menu auto-generation in the wxWindows interface.
-
- 30 Mar, 2003 1 commit
-
-
Gildas Bazin authored
* modules/*: sanitization of the modules description strings.
-
- 03 Mar, 2003 1 commit
-
-
Gildas Bazin authored
* ALL: Finally fixed the MSVC project files. Don't include io.h on win32 when not necessary. A few build fixes for MSVC. * src/misc/win32_specific.c: try to load winsock2 instead of winsock1 when present.
-
- 20 Feb, 2003 2 commits
-
-
Gildas Bazin authored
* src/libvlc.h, modules/audio_output: added a global --spdif config option to allow using the spdif output by default if available. * modules/misc/dummy/*: on win32 added a quiet mode that doesn't display a dos command box. * modules/control/rc/rc.c: on win32 enabled the echo mode and the backspace key. * modules/codec/mpeg_audio.c: fixed a sync bug.
-
Sigmund Augdal Helberg authored
indicate wether it is an "advanced" option or not. The goal with this is to hide the user from all the strange options that very seldom needs to be changed. added an extra argument to all the add_* macros to indicate wether the item is advanced or not. * src/libvlc.h: added an "show advanced options" config option default disabled * src/libvlc.c: the advanced options are not listed by vlc --help and friends unless --advanced is used * modules/gtk/preferences.c: the gtk/gnome preferences dialog don't show advanced options unless advanced is set all: set the advanced flag to VLC_FALSE or VLC_TRUE for all options, by using some common sense. Please check and correct note: All interfaces should still work like they used to, see the change in modules/gtk/preferences.c to find out how to "hide" options. second note: I think I've changed all the modules, but I could not test everyone for compilation, expect some broken modules (the fix is to add ", VLC_TRUE" as last argument to the add_* I forgot)
-
- 17 Feb, 2003 1 commit
-
-
Gildas Bazin authored
* modules/control/rc/rc.c: finally fixed the rc interface under win32 by using WaitForSingleObject() on the console handle and ReadConsoleInput(). (Closes #59)
-
- 09 Feb, 2003 1 commit
-
-
Christophe Massiot authored
audio output. Consequently, the first argument can be any vlc_object_t. * modules/gui/macosx/*: greatly simplified volume functions ; you can now call aout_Volume* even when there is no audio output, and the volume will be saved for later use.
-
- 06 Feb, 2003 1 commit
-
-
Sam Hocevar authored
"interface" variable to "dvdplay" (Closes: #178, #210, and probably a bunch of others). * ./src/interface/interface.c: added a safety check to circumvent the bug, allowing a smooth upgrade.
-
- 23 Jan, 2003 2 commits
-
-
Gildas Bazin authored
* modules/access/dvdread/input.c, modules/control/rc/rc.c: fixed typos.
-
Gildas Bazin authored
* modules/control/rc/rc.c: Partial fix for the rc interface under win32. On win32, select() only works on socket descriptors so we don't use it anymore on this platform. Right now we only do a blocking call to read() although it should be possible to have a fully functionnal interface by using the PeekConsoleInput() call (someone willing to investigate this ?).
-
- 17 Jan, 2003 1 commit
-
-
Sam Hocevar authored
-
- 16 Jan, 2003 1 commit
-
-
Loïc Minier authored
-
- 14 Jan, 2003 2 commits
-
-
Christophe Massiot authored
* rc.c: fixed a warning.
-
Sigmund Augdal Helberg authored
even when nothing is currently playing. Added a playlist command to list the entries currently in the playlist. plus some cleanups and sanity checks.
-
- 14 Dec, 2002 1 commit
-
-
Gildas Bazin authored
* src/misc/objects.c: implemented the FIND_CHILD mode for vlc_list_find(). vlc_object_get() now increments the refcount of the object so you'll need to release the object at some point. * src/misc/variables.c, ALL: var_Change() with VLC_VAR_GETLIST now returns a vlc_value_t which points to a vlc_list_t.
-
- 07 Dec, 2002 2 commits
-
-
Christophe Massiot authored
warnings than real ones. * audio output: New intf-change variable to know when audio-channels and audio-device have changed. * video output: New intf-change variable and vout_VarCallback, to know when video-device has changed (OS X port). * modules/gui/macosx/*: Menus for audio channels, implemented volume management, added a menu for screen selection.
-
Gildas Bazin authored
* ALL: a few updates to the variables API: - got rid of the VLC_VAR_COMMAND variable type and introduced the VLC_VAR_ISCOMMAND flag instead. This simplifies things and avoid the strange command variables behaviour. Command variables will now trigger their callback on var_Set() like any other variables (look in modules/control/rc/rc.c for an example). - Renamed the VLC_VAR_ISLIST flag into VLC_VAR_HASCHOICE. - Added a new VLC_VAR_VOID variable type. This can be useful in conjunction with VLC_VAR_ISCOMMAND for instance.
-
- 06 Dec, 2002 1 commit
-
-
Sam Hocevar authored
* ALL: a bunch of additional warning fixes.
-
- 02 Dec, 2002 1 commit
-
-
Jon Lech Johansen authored
-
- 23 Nov, 2002 1 commit
-
-
Sam Hocevar authored
and it uses a command variable like other controls. This also fixes a bug that prevented to have spaces between the command and its argument.
-
- 20 Nov, 2002 1 commit
-
-
Gildas Bazin authored
* modules/control/rc/rc.c: added commands to navigate between chapters and titles.
-
- 14 Nov, 2002 1 commit
-
-
Christophe Massiot authored
and is replaced by two members : i_physical_channels and i_original_channels. i_physical_channels describes the channels which are effectively present in the stream (at the current point of the aout pipeline), whereas i_original_channels represents the channels we used to constitute the stream. For instance a mono stream (FRONT_CENTER) may emanate from a FRONT_LEFT channel of a STEREO stream. Additionally, this contains hooks to dynamically select the audio device and the channels configuration. In order to do that, all aout plugins, and all interface plug-ins need to be adapted. Currently only SDL (partially OSS) and the rc interface have been adapted, please use them as a guide. Other aout plug-ins have been temporarily disabled. IMPORTANT : if you need a working sound output, DO NOT UPDATE YOUR TREE for several days until we fix that. * modules/misc/network/ipv4.c: Fixed a long-standing segfault when saving preferences and asking for multicast.
-
- 14 Oct, 2002 1 commit
-
-
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.
-
- 11 Oct, 2002 1 commit
-
-
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().
-
- 03 Oct, 2002 2 commits
-
-
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.
-
Sam Hocevar authored
p_libvlc, and each p_vlc is a child of p_libvlc. Reasons for this are: o the module bank and the message bank only need to be initialized once, which gives faster loads when multiple instances of libvlc are used, o we allow the possibility of different p_vlc sharing objects, for instance the audio output, o the CPU detection is only done once. This patch is not polished yet, but I cannot do any intensive tests for the moment because of a bug somewhere that leaves audio output objects lying here and there which needs to be investigated first. The current major issue is that the module bank is no longer freed.
-
- 30 Sep, 2002 1 commit
-
-
Sam Hocevar authored
* ./mozilla/vlcplugin.cpp: javascript support for the Mozilla plugin. * debian/rules: the A52 module is now in a separate package.
-
- 20 Aug, 2002 1 commit
-
-
Sam Hocevar authored
gtk_main() in its own thread, and does nothing on subsequent calls. This ensures that gtk_main is only running once. * ./modules/gui/familiar/*, modules/gui/gtk/*: the familiar, gtk and gnome modules are now fully reentrant thanks to their use of the gtk_main module. * ./src/libvlc.c: implemented vlc_set(), a wrapper for config_Put* available to external programs. * ./src/libvlc.c: removed vlc_stop() and vlc_end(), everything is now done by vlc_destroy(). * ./modules/control/rc/rc.c: implemented a few new functions. For instance, run "vlc -I rc" and then type "intf gtk" or "intf gnome". You can even launch several of them. "segfault" works, too.
-
- 14 Aug, 2002 1 commit
-
-
Sam Hocevar authored
just as 'd' displayed a tree of attached objects. * ./src/misc/modules.c: added a missing header.
-
- 13 Aug, 2002 1 commit
-
-
Sigmund Augdal Helberg authored
input
-
- 04 Aug, 2002 1 commit
-
-
Sam Hocevar authored
waveout, directx, qnx, beos, win32, macosx, and the AltiVec modules. * ALL: removed mention of AC3 in favour of A52. * ./configure.in, ./Makefile*: modules can now be built deeper than 1 directory. As a consequence, the build is even slower (but I'm fixing this) and make clean doesn't work anymore.
-
- 31 Jul, 2002 1 commit
-
-
Sam Hocevar authored
about 2000 lines of code. I could not test everything on every architecture, so please report any module breakage (especially on BeOS, OSX and QNX).
-
- 21 Jul, 2002 1 commit
-
-
Sigmund Augdal Helberg authored
configuration items. * rest: new input info subsystem. Have a look in plugins/mpeg_system/mpeg_audio.c to see how to add info. Have a look in plugins/text/rc.c to see how to read info. Sigmund
-
- 20 Jul, 2002 1 commit
-
-
Sam Hocevar authored
* ./src/libvlc.c, ./include/vlc/vlc.h: created reentrant versions of the libvlc API. * ./src/vlc.c: vlc uses the non-reentrant libvlc functions. * ./mozilla/vlcplugin.c: the mozilla plugin uses the reentrant functions. * ./debian/*: created packages for libvlc0-dev.
-
- 15 Jul, 2002 1 commit
-
-
Sam Hocevar authored
for p_intf->b_die to know when they are supposed to terminate p_intf. This will allow to spawn interface plugins on the fly.
-