- 30 Sep, 2017 7 commits
-
-
David Fuhrmann authored
-
David Fuhrmann authored
-
David Fuhrmann authored
This unifies behaviour with all the other HUD panels
-
David Fuhrmann authored
Fix layout with translated strings. Set minimum sizes for table view.
-
David Fuhrmann authored
Extracting between different bookmarks was only possible with the old streaming wizard which is removed since a long time. As the new CAS panel does not support that feature, remove the button for now.
-
David Fuhrmann authored
Previous level was showing window over all VLC windows and even over windows from different application. This is not that practical for debugging.
-
David Fuhrmann authored
Layout popups / etc. in such a way that they increase size in case of horizontal resize. For labels, make sure: - set single line mode to true, truncate - set compression resistency to 750, so they do not get truncated - set hugging priority to 251, so that popups get expanded, not labels - With that, fixes some build warnings for functionality before 10.11 Also, set maximum frame size to current frame size. This should disallow excessive horizontal resizes, whereas vertical resizes are still ok. Set better background color for scroll view.
-
- 29 Sep, 2017 17 commits
-
-
Thomas Guillem authored
This fixes a video freeze after a seek with VDPAU HW rendering. Indeed, the VLC_CODEC_VDPAU_OUTPUT video converter need to be flushed to clear pictures history. Fixes #18423
-
Thomas Guillem authored
-
Thomas Guillem authored
Handle VLC_CODEC_CVPX_BGRA <=> VLC_CODEC_BGRA without NV12 filter proxy. (same for NV12, YUV2, I420)
-
François Cartegnie authored
-
François Cartegnie authored
required by captions
-
Thomas Guillem authored
-
Pierre Lamot authored
This was notably causing a SEGV in the configuration interface. Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
Thomas Guillem authored
For example: vlc --video-filter ci --ci-filter CICrystallize
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Marvin Scholz authored
-
Marvin Scholz authored
This is not working fine anymore and causing visual glitches.
-
Julian Scheel authored
A properly set chroma field is required for automatic filter selection to work. As this is raw video chroma and codec are equal. Signed-off-by:
Julian Scheel <julian@jusst.de> Signed-off-by:
Ilkka Ollakka <ileoo@videolan.org>
-
Zhao Zhili authored
Since input_Control is executed asynchronously, current state may be different to the state when INPUT_SET_STATE executing. Here is a use case which is broken by check current state in libvlc_media_player_set_pause(): 1. current state is paused 2. call libvlc_media_player_play() 3. call libvlc_media_player_set_pause() immediately before INPUT_SET_STATE PLAYING_S is executed, libvlc_media_player_set_pause() will do nothing, so it looks like the pause request is been dropped silently Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
- 28 Sep, 2017 16 commits
-
-
François Cartegnie authored
-
Marvin Scholz authored
In the past, it was relied on the playlist item count to ignore items that were already parsed by libvlc, but this is not enough as with some command line flag combinations, like -v --video-splitter clone --clone-count 5 libvlc would not add any files, but Cocoa would try to open "clone" as a file. Therefore we need to ignore the intersection of the launch arguments and the files to open.
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
Thomas Guillem authored
Since some vout may hold a reference on the displayed picture. Fixes #18537
-
Thomas Guillem authored
When filtering a 1080p YUV2 video, CPU goes from 60% to 40%. Ideally, the vout should be reconfigured to switch from YUV2 to BGRA to get the best performances possible.
-
Thomas Guillem authored
-
Thomas Guillem authored
CoreImage can accept YUV2 as input (it'll do a conversion internally), but it can't output this same chroma (so the dst_cnverter is still needed).
-
François Cartegnie authored
Otherwises other decoders are still active and then streams. Also could trigger dual selected track states.
-
François Cartegnie authored
-
Thomas Guillem authored
The H264 profile/level check was only done for avcC content and not when a new SPS/PPS was parsed.
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-