- Apr 20, 2021
-
-
Alexandre Janniaux authored
-
Alexandre Janniaux authored
-
Alexandre Janniaux authored
The vlc_runloop mode is designed to be executed even when an event is being reported by the vout_window used, ie when there is a call to CFRunLoopInMode(CFRunLoopGetMain(), CFSTR("vlc_runloop"), ..). By adding the default mode too, it ensures it would run in the normal CFRunLoop too. Async tasks can still be dispatched without the "vlc_runloop" mode but every sync task in the display must be done under this mode to prevent deadlock from happening between the main thread and the vout_thread. Fixes #23571
-
Alexandre Janniaux authored
The UIView should have a well-defined size from the start.
-
Alexandre Janniaux authored
It avoids the display to open with a size bigger than the device's screen, which could lead to out-of-memory failures.
-
Alexandre Janniaux authored
Report events from a different thread than the main thread, and continue to execute the main CFRunLoop, but filter the events to only execute the ones queued by potential display, ie. those tagged with the mode "vlc_runloop". The vlc_runloop mode is designed to be executed even when an event is being reported by the vout_window used, ie. when there is a call to CFRunLoopInMode(CFRunLoopGetMain(), CFSTR("vlc_runloop"), ..). Clients should ensure they also tag their blocks with the default mode too. Otherwise, they are likely to never be executed. Async tasks can still be dispatched without the "vlc_runloop" mode but every sync tasks in the display must be done under this mode to prevent deadlock from happening between the main thread and the vout_thread, typically with the following code: /* The main loop to run the block into */ CFRunLoopRef runloop = CFRunLoopGetMain(); /* The modes to execute the block in */ CFStringRef modes_cfstrings[] = { kCFRunLoopDefaultMode, CFSTR("vlc_runloop") }; CFArrayRef modes = CFArrayCreate(NULL, (const void **)modes_cfstrings, ARRAY_SIZE(modes_cfstrings), &kCFTypeArrayCallBacks); CFRunLoopPerformBlock(runloop, modes, ^{ /* The block content to execute */ }); /* Don't forget to signal the runloop CFRunLoopWakeUp(runloop); CFRelease(modes); To achieve a blocking/sync behaviour, clients can share a binary semaphore between the block and the outside of the block. When using a vlc_sem_t object, it must be qualified with __block to be modified inside of the block. Refs #23571
-
- Apr 19, 2021
-
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
- Apr 18, 2021
-
-
Jean-Baptiste Kempf authored
Ref #18487
-
Jean-Baptiste Kempf authored
-
OpenBSD and other OS's use _SC_NPROCESSORS_ONLN to indicate the number of online CPUs. Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- Apr 16, 2021
-
-
Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
improves creation time of GridItem Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
removes shadows Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
provides cached selected and unselected type shadows for use in GridItem Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
can generate shadows in a Component which then can be reused at different places, note that shadows are only created once Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
improve instantiation times for GridItem component Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
fixes qml errors that happens when the toolbar editor gets opened. Intends to be a temporary solution for #25643. Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
according to specifications, undefined can not be assigned to qml type real fixes part of #25601. Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
according to specifications, null can not be assigned to qml type point fixes part of #25601. Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
This patch fixes a component which tries to access undefined object and tries to assign undefined to QString. fixes part of #25601. Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
fixes part of #25601. Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
fixes part of #25601 Signed-off-by:
Pierre Lamot <pierre@videolabs.io>
-
- Apr 15, 2021
-
-
Alexandre Janniaux authored
The inhibiter code is taken from VLCKit inhibiter's handling, and is meant to replace this handling.
-
Alexandre Janniaux authored
-
Alexandre Janniaux authored
-
Alexandre Janniaux authored
The pinch recognizer cannot work on tvOS, since tvOS doesn't have a touchscreen.
-
- Apr 14, 2021
-
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
-
- Apr 13, 2021
-
-
Pierre Ynard authored
-
Pierre Ynard authored
-
- Apr 12, 2021
-
-
Alexandre Janniaux authored
The comment /* Get the subpicture to be displayed */ was written twice in places where no subpictures were involved. In addition, do_snapshot was computed where the rendering date was computed although it was not used there. Move the do_snapshot computation just before it's used, replace the misplaced comments by comment actually describing what's follow, and rewrite the removed comment where spu_Render actually returns the subpicture.
-
This helps for testing plane filtering. Signed-off-by:
Alexandre Janniaux <ajanni@videolabs.io>
-
If config.filter_planes is set on a filter, generate one output texture for each input texture, and call draw() for each plane separately. Signed-off-by:
Alexandre Janniaux <ajanni@videolabs.io>
-
A "direct" sampler (i.e. a sampler without interop) only supported one texture, because the output of the previous filter was assumed to be RGBA in a single plane. A deinterlace filter will output several planes, so the sampler of the next filter must be able to receive all of them. Signed-off-by:
Alexandre Janniaux <ajanni@videolabs.io>
-
A sampler gives access to the input picture, in RGBA. Add support for giving access to individual input planes, selected by vlc_gl_sampler_SelectPlane(), in their native format. Signed-off-by:
Alexandre Janniaux <ajanni@videolabs.io>
-
The number of input planes and their sizes might be useful to filters implementation. It could be retrieved by vlc_fourcc_GetChromaDescription(), but for convenience, expose them in sampler. Signed-off-by:
Alexandre Janniaux <ajanni@videolabs.io>
-