An error occurred fetching the project authors.
- 07 Jun, 2007 2 commits
-
-
Rémi Denis-Courmont authored
-
Laurent Aimar authored
-
- 06 Jun, 2007 1 commit
-
-
Rémi Denis-Courmont authored
(fixes problem with most-but-not-all filenames containing a colon) - Only allow letters as Windows drives
-
- 03 Jun, 2007 1 commit
-
-
Laurent Aimar authored
field to "attachment://NAME" where NAME is an attachment filename (returned by DEMUX_GET_ATTACHMENTS) - Lock input_item_t every time we access p_meta fields (there is still a problem as playlist code does not always do so...). - Do not preparse item we have already played. - Wait that the current playing item is meta parsed before fetching its cover.
-
- 31 May, 2007 1 commit
-
-
Laurent Aimar authored
Use decoder_GetInputAttachment to get attachment from a decoder module. You need to release the memory with vlc_input_attachment_Delete. Untested... modules/playlist/* cosmetic.
-
- 30 May, 2007 1 commit
-
-
Laurent Aimar authored
do not convert pts/dts of prerolled samples decoder: fixed ES_OUT_SET_NEXT_DISPLAY_TIME implementation (improved seek) proper handling of DISCONTINUITY reset video picture heap on seek/pause/rate change (avoid old pictures) Please report any regression.
-
- 29 May, 2007 1 commit
-
-
Gildas Bazin authored
* src/input/input.c: don't use input_EsOutDiscontinuity() on pause for now since this isn't properly supported by decoders yet and can thus corrupt the decoded stream.
-
- 25 May, 2007 1 commit
-
-
Laurent Aimar authored
-
- 19 May, 2007 1 commit
-
-
Rémi Denis-Courmont authored
This also seems to make the pre-existing Qt4 crash more obvious.
-
- 18 May, 2007 1 commit
-
-
Antoine Cellerier authored
* src/input/input.c: Remove the access and demux part from the path string. (Fixes [20059] a bit ... even though it wasn't really broken)
-
- 11 May, 2007 1 commit
-
-
Antoine Cellerier authored
input.c: if available, use p_access->psz_path instead of psz_path when calling demux2_New since the access can change the path (ie http redirect).
-
- 05 Apr, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 24 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 23 Mar, 2007 1 commit
-
-
Laurent Aimar authored
Fixed VLC_META_NOW_PLAYING update.
-
- 07 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 02 Mar, 2007 1 commit
-
-
Laurent Aimar authored
as soon as possible to allow decoders to flush (well that part need to be implemented ;)
-
- 28 Feb, 2007 1 commit
-
-
Laurent Aimar authored
work again yet )
-
- 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))
-
- 22 Feb, 2007 1 commit
-
-
Laurent Aimar authored
-
- 21 Feb, 2007 1 commit
-
-
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)
-
- 12 Feb, 2007 1 commit
-
-
Rafaël Carré authored
-
- 05 Jan, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 03 Jan, 2007 2 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.
-
- 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
-
- 03 Dec, 2006 1 commit
-
-
Rémi Denis-Courmont authored
- move vlm to input/ - remove unused libvlc export
-
- 27 Nov, 2006 1 commit
-
-
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
-
- 23 Nov, 2006 1 commit
-
-
Derk-Jan Hartman authored
* destroy some mutex'es once in a while to prevent memleaks. Suggested by a forumuser, name pending.
-
- 08 Nov, 2006 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 29 Oct, 2006 2 commits
-
-
Jean-Paul Saman authored
-
Jean-Paul Saman authored
-
- 21 Oct, 2006 1 commit
-
-
Clément Stenac authored
Not tested heavily yet ... For interaction implementers: you need to call playlist_Signal after changing the status of a dialog. Please see the diff for qt4/dialogs/interaction.cpp
-
- 19 Oct, 2006 1 commit
-
-
Rémi Denis-Courmont authored
-
- 11 Oct, 2006 1 commit
-
-
Gildas Bazin authored
-