- 11 Jul, 2011 15 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Decoders are never "killed", so this had no effects.
-
Rémi Denis-Courmont authored
(Same reasons as VLC_OBJECT_AOUT)
-
Rémi Denis-Courmont authored
Audio output is not a descendent of input thread, so there was no real use for this object type anymore.
-
Felix Paul Kühne authored
macosx: make sure that we don't block media keys for iTunes in case the user doesn't want to use them within VLC Changing this option requires a relaunch now, which is automatically offered when needed. Fixes #5025
-
Jean-Baptiste Kempf authored
3gp4 is not compatible to isom, while 5, 6 and 7 should be Ref #4979
-
Jean-Baptiste Kempf authored
This doesn't help users to report issues...
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Pierre Ynard authored
-
- 10 Jul, 2011 14 commits
-
-
Rémi Denis-Courmont authored
Without this, libvlc_media_parse() will deadlock on non-file items.
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
Also fix indentation (4 spaces)
-
Rémi Denis-Courmont authored
This has no effects, so lets not do it.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Ron Frederick authored
Change the MacOS GUI to trigger the fade of all the displays to black when entering & leaving full screen mode only if the "Black out other displays" preference is set. Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
-
- 09 Jul, 2011 5 commits
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
-
Alexey Sokolov authored
Tests show that current docs are wrong. Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
- 08 Jul, 2011 6 commits
-
-
Rémi Denis-Courmont authored
Audio output should be more efficient on FPU-less devices. Firstly the mixer should be faster with 16-bits instead of 32. Secondly FPU-less systems usually output at 16-bits, so one sample format conversion between the mixer and the output is now avoided. Thirdly conversion from input format to the mixer format should similarly be completely avoided or at least accelerated.
-
Rémi Denis-Courmont authored
With only one input per output, the lock is only useful: - to restart the audio instance (needed 3 out of 4 locks anyway), - to propagate volume change to the mixer or output plugin, - to access the FIFO from the output plugin thread (if applicable). So 4 fine-grained was over-engineering. Most importantly, the locking scheme was overly complicated and generally misunderstood/misused. Also to avoid lock inversion, some unlocking/relocking sequences were introduced; they broke atomicity. We could certainly reduce the scope of the remaining lock. Since we have one only input per output, most of the code is only ever run from the decoder thread. Thus reentrancy is not anymore needed in some places. But first aout_Restart() needs to be fixed and simplified.
-
Rémi Denis-Courmont authored
This is required for PulseAudio synchronization and to pause/resume with low-latency. This should also be useful for other buffered audio outputs such as ALSA or CoreAudio.
-
Rémi Denis-Courmont authored
-
Hugo Beauzée-Luyssen authored
Fixes #5026 Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
-