- 23 Oct, 2015 12 commits
-
-
Rémi Denis-Courmont authored
-
Marvin Scholz authored
Add checks for NSUserNotification and NSUserNotificationCenter so we do not use them on OS X 10.7 and below, to prevent VLC from crashing if it is compiled on 10.8 or higher but ran on 10.7 or below. Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Boris Egorov authored
Signed-off-by:
Boris Egorov <egorov@linux.com> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Boris Egorov authored
Signed-off-by:
Boris Egorov <egorov@linux.com> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Boris Egorov authored
Signed-off-by:
Boris Egorov <egorov@linux.com> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Marvin Scholz authored
This restores the code that used notifications to determine the app state. Additionally the inital state is not active, as we get a notification if the app switches to active after opening. Signed-off-by:
Felix Paul Kühne <fkuehne@videolan.org>
-
Jean-Baptiste Kempf authored
It seems not all sha512sum are equal
-
Marvin Scholz authored
Set an identifier for the VLC Notifications to make them coalesce when changing tracks rapidly one after another. (closes #10386) Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Marvin Scholz authored
This cleans up unnecessary code which could be replaced by a much simple check to determine if VLC is in foreground or not. Add a missing release. Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Marvin Scholz authored
This renames the Growl plugin to OS X Notifications to highlight the new capabilities and to not advertise Growl so much, as requested. Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Steve Lhomme authored
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Alexander Law authored
-
- 22 Oct, 2015 14 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Handling the redirection in the access core enables support for redirection between different protocols (e.g. HTTP to FTP) and more generally different access plugins (e.g. HTTP to HTTP2 in future).
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
-
Thomas Guillem authored
This test compare IO output/returns between libc FILE functions and stream functions. This commit also add an extra test: 'test_src_input_stream_net' to test a http file.
-
Thomas Guillem authored
-
Thomas Guillem authored
AStreamRefillStream shouldn't fail in case of EOF. AStreamSeekStream shouldn't fail when no data can be cached after a seek.
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
And assert (debug only).
-
- 21 Oct, 2015 8 commits
-
-
David Fuhrmann authored
-
Francois Cartegnie authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
No functional changes
-
Rémi Denis-Courmont authored
The mwait() call dereferenced a potentially no longer referenced picture (if the display was filtered).
-
Rémi Denis-Courmont authored
Change the audio device when the corresponding action is triggered, not when it is modified... This completely broke ALSA playback.
-
Rémi Denis-Courmont authored
This ensures that the default value ("default") for alsa-audio-device is listed as a possible choice.
-
Jean-Baptiste Kempf authored
-
- 20 Oct, 2015 6 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This shares the code between access_demux and demux cases.
-
Rémi Denis-Courmont authored
Many existing demuxers do not use the generic control helper providing those control queries. But as we now need to support those queries for manifest-based or asynchronous demuxers, this fallback becomes necessary. We could also just do ahead and implement the controls in all demuxers. Help yourself.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Some demuxers support seeking even if the underlying byte stream is not seekable (e.g. subtitles). Also some demuxers do not support seeking regardless of the underlying byte stream. So it makes more sense to check the status from the demuxer. Most demuxers just copy or forward the value from the byte stream. Note: if in doubt, a demuxer can always claim seek support, and eventually fail both DEMUX_SET_TIME and DEMUX_SET_POSITION. The seek is only used as a hint for user interfaces; it has no effects on the input thread as such.
-
Rémi Denis-Courmont authored
-