- 02 Mar, 2007 1 commit
-
-
Laurent Aimar authored
You have to use sout-keep option on your broadcast media using > setup your_media option sout-keep The default value is no-sout-keep and command line option --sout-keep will not activate it (on purpose).
-
- 01 Mar, 2007 2 commits
-
-
Laurent Aimar authored
-
Sigmund Augdal Helberg authored
clock.c: replace a magic number with the appropriate constant vlc_include.h: fix a comment to match reality
-
- 28 Feb, 2007 1 commit
-
-
Laurent Aimar authored
work again yet )
-
- 27 Feb, 2007 2 commits
-
-
Derk-Jan Hartman authored
P.S. this bug was present for 3 months, without anyone noticing it. That's just BAD people.
-
Laurent Aimar authored
-
- 26 Feb, 2007 1 commit
-
-
Laurent Aimar authored
Fixed race condition with sout-keep. Fixed broken sout-keep behaviour (currently active sout can be used twice or destroyed..., it might fixed segfaults reported by xxcv))
-
- 25 Feb, 2007 3 commits
-
-
Antoine Cellerier authored
-
Laurent Aimar authored
-
Laurent Aimar authored
-
- 22 Feb, 2007 3 commits
-
-
Laurent Aimar authored
-
Jean-Paul Saman authored
-
Antoine Cellerier authored
-
- 21 Feb, 2007 3 commits
-
-
Laurent Aimar authored
(This way it matches input_CreateThread and fixes a memleak) Control variables are now created even for preparse, only callback are not added. (This fix use of uninitialized variables)
-
Christophe Mutricy authored
-
Antoine Cellerier authored
-
- 12 Feb, 2007 1 commit
-
-
Rafaël Carré authored
-
- 23 Jan, 2007 1 commit
-
-
Christophe Massiot authored
-
- 05 Jan, 2007 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 03 Jan, 2007 5 commits
-
-
Rémi Denis-Courmont authored
Do not ignore access specification; do not fallback to vcd, file whatever. It sucks (e.g. if following an HTTP URL you really should only try to use the HTTP plugin, and this is the proper and only way to do it). Again MRLSplit might need to be improved (not sure how)
-
Rémi Denis-Courmont authored
Maybe you have a colon in your filename, but it is no reason to mix access protocols.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
You do not want to get another access filter plugin that the one you requested, do you?
-
- 23 Dec, 2006 1 commit
-
-
Clément Stenac authored
* Possible (not probable) fix for 934. Can't fix as building vlc on win32 is almost impossible
-
- 22 Dec, 2006 1 commit
-
-
Clément Stenac authored
The idea is that a given error should be reported only once to the user. At the moment, for example, we can get: - "no suitable access module" (printed by module_Need) - "unable to create access" (printed by input/access) - "unable to open stream" (printed by input/input) - ... The facilities provided here are: * msg_StackSet( code, message ) : "throw" a new error * msg_StackAdd( message ) : Append a message allowing to trace the message * msg_StackMsg() : Retrieve the message So, in the previous example, module_Need would msg_StackSet( code, "no suitable access module"), then input/input would add "unable to create access" and finally, input/input can print the "unable to open stream: unable to create access: no suitable module" message. The three functions are context-free, you don't need a vlc_object, so that we can add verbose error reporting everywhere.
-
- 10 Dec, 2006 1 commit
-
-
Clément Stenac authored
releasing it. mutex locks /= 20 on a standard preparse run * Only create absolutely necessary variables while preparsing --> Preparse speed *= 4 (with item in disk cache of course) * Do not rebuild playlist too much while adding a directory. Add a new flag to NodeCreate and Add to control this behaviour
-
- 06 Dec, 2006 1 commit
-
-
Marian Durkovic authored
-
- 04 Dec, 2006 1 commit
-
-
Marian Durkovic authored
-
- 03 Dec, 2006 4 commits
-
-
Marian Durkovic authored
-
Antoine Cellerier authored
-
Clément Stenac authored
* Add right-click "info" item in qt4 playlist
-
Rémi Denis-Courmont authored
- move vlm to input/ - remove unused libvlc export
-
- 27 Nov, 2006 2 commits
-
-
Derk-Jan Hartman authored
-
Derk-Jan Hartman authored
-
- 26 Nov, 2006 3 commits
-
-
Clément Stenac authored
-
Clément Stenac authored
-
Clément Stenac authored
* Headers in include must contain the structures and prototypes needed by the plugins and should be named vlc_*. * Headers in include/vlc must contain the structures and prototypes needed by external libvlc clients * Moved and renamed some things in headers. - Removed vlc_cpu.h, vlc_error.h (merged in vlc_common) - Removed snapshot.h (merged in vlc_vout.h) - Removed vlc_spu.h (merged in vlc_osd.h) - Removed intf_eject.h and vlc_interaction.h (merged in vlc_interface) - Moved all internal headers to src - Merged vlc_video.h and video_output.h and move private things to src - Removed vlc/intf.h, vlc/aout.h, vlc/vout.h, vlc/decoder.h and vlc/input.h (meta headers for use in modules, and often implying too large dependencies) * Removed some useless dependencies * Unexported a bunch of functions and structures used only in src/ (--> Still some work here) * Finally made input_thread_t and input_source_t (mostly) private. Added input_GetItem to fetch the input_item of an input_thread * Cleaned up deprecated entries in vlc_symbols.h and bumped up symbol prefix This commit has a 99% probability of breaking the build, 0.1% of killing your cat and 0% of getting you hot chicks.
-
- 25 Nov, 2006 1 commit
-
-
Derk-Jan Hartman authored
-