- 09 Oct, 2008 1 commit
-
-
hartman authored
-
- 08 Sep, 2008 1 commit
-
-
Laurent Aimar authored
-
- 07 Sep, 2008 1 commit
-
-
Laurent Aimar authored
At worst it will use a lot of CPU but this will allow to detect buggy access/access_demux module.
-
- 31 Aug, 2008 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
For a start, nobody uses UTF-32 for transmission/storage. Then, we anyway have iconv() support in the subtitle support (where it belongs IMHO), if you really wanted to use UTF-32.
-
- 26 Aug, 2008 3 commits
-
-
Laurent Aimar authored
-
Laurent Aimar authored
-
Laurent Aimar authored
The record access_filter will become useless as soon as all demuxers that can support it will be modified. The record support is half done. I will also add es_out_t record functionnalities, and a way to selected one of them if both are supported.
-
- 22 Aug, 2008 1 commit
-
-
Laurent Aimar authored
-
- 20 Aug, 2008 1 commit
-
-
Eric Petit authored
Don't use "p_block->i_buffer = read(...)", i_buffer is unsigned so you won't catch read errors and will end up crashing using a 4GB buffer instead. This fixes a DVB segv I was seeing.
-
- 13 Aug, 2008 1 commit
-
-
ivoire authored
-
- 12 Aug, 2008 1 commit
-
-
Pierre d'Herbemont authored
-
- 31 Jul, 2008 1 commit
-
-
Adrien Maglo authored
Signed-off-by:
Pierre d'Herbemont <pdherbemont@videolan.org>
-
- 03 Jul, 2008 1 commit
-
-
Laurent Aimar authored
requested one. (Breaking at least mapped file input).
-
- 24 Jun, 2008 1 commit
-
-
ivoire authored
-
- 20 Jun, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 19 Jun, 2008 1 commit
-
-
ivoire authored
Fix two potential segfaults. Cosmetics.
-
- 15 Jun, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 06 Jun, 2008 4 commits
-
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
-
Rafaël Carré authored
This reverts commit 0bcda15e.
-
Rafaël Carré authored
-
- 05 Jun, 2008 1 commit
-
-
Pierre d'Herbemont authored
It is much more efficient regarding latency as it doesn't bufferize more than needed, and let the module access take care of that eventually. Enable with --use-stream-immediate. We may want to default it. Note: --use-stream-immediate will be only effective on access that don't provide pf_block() for now. This is because I didn't benchmark against the Block method. Here the gain that I did measure is about 200ms (less latency) when using the http access on a loopback.
-
- 31 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 30 May, 2008 1 commit
-
-
Rafaël Carré authored
Reported by Coverity scan : CID 142
-
- 26 May, 2008 1 commit
-
-
Signed-off-by:
Rafaël Carré <funman@videolan.org>
-
- 07 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 05 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 04 May, 2008 1 commit
-
-
Rémi Denis-Courmont authored
...and use it for stats and the config lock
-
- 01 May, 2008 3 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 14 Apr, 2008 2 commits
-
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
This improves readability a lot and prevent us from reinventing the wheel.
-
- 30 Mar, 2008 1 commit
-
-
Pierre authored
stream: No use to vlc_object_yield() and object that create ourslef, and that a race could possibly corrupt in case of bad usage.
-
- 29 Mar, 2008 1 commit
-
-
Pierre d'Herbemont authored
Because there is no proper convention, there is no reason why the object couldn't be detached. We would need to vlc_object_find the input to be sure there is no problem. Let's assume for now that the input creates the access and is responsible for it.
-
- 12 Mar, 2008 1 commit
-
-
ivoire authored
-
- 04 Mar, 2008 1 commit
-
-
Rémi Denis-Courmont authored
The input already does the job. Signed-off-by:
Rémi Denis-Courmont <rem@videolan.org>
-
- 27 Feb, 2008 1 commit
-
-
Rafaël Carré authored
-
- 26 Feb, 2008 1 commit
-
-
Pierre d'Herbemont authored
misc/objects.c: Don't rely on vlc_object_destroy() to destroy objects, but expects vlc_object_release to do it when the refcount goes to zero. * Meaning, that when created objects gets a refcount to 1. * Destroying is instantaneous and we don't have to poll for a few secondss or so to wait until the object's refcount reach 0. * We now track vlc_object_t's mem leaks when libvlc_global is released (Hard error for now, so they don't get unoticed) * We fail hard if an object is released with a refcount of 1 without being detached from its parent and its children, to make sure such cases don't go unoticed. (make test or make check still pass after that one. VLC is known to leak one object when no module is loaded, this must be fixed).
-