- Dec 21, 2022
-
-
Fix #27584
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Streamline VLCLibraryMenuController, use one NSMenu with hideable menuitems rather than two separate menus Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
- Dec 20, 2022
-
-
-
-
This interop renders DMABUF-enabled GstBuffers via EGL, EXT_image_dma_buf_import and GL_OES_EGL_image_external. NV12 buffers are imported as a single EGLImage as there is no guarantee that the alignements will be correct for a chrominance EGLImage which dimensions are twice smaller.
-
-
-
This guarantees that the video sink gets a video chroma type supported by VLC.
-
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
valid jpeg data offset being greater than 0xff
-
- Dec 19, 2022
-
-
Fatih Uzunoğlu authored
Support for this seems to be lacking with Direct3D, and ANGLE seems to not take this into consideration. Starting from Qt 6, it also seems to be not supported altogether.
-
In some views, it makes more sense to trigger the action of a double click with a single tap on screen
-
-
- Dec 18, 2022
-
-
-
If the installed ninja supports it, it will play nice with the other build jobs.
-
-
This work, from the CMake makers, supports jobserver and is actively maintained.
-
Regression from 370f785e This is only used as debug purpose.
-
Don't set *is_silence to true in case of underrun, if some data was written.
-
-
-
Having a custom horizontalSpacing would conflict with the helpers VLCStyle.colWidth and VLCStyle.gridColumnsForWidth and the grid placement overall.
-
-
This update contains three minor release at once. 0.12.1: - Fix network drives listing on Win32 - Fix incorrect benchmarks code, which was not testing the actual requests - Fix build for OpenWrt - Fix build with upstream llvm/libc++ - Fix logger usages before a logger was set 0.12.2: - Fix history modification callbacks 0.12.3: - Remove leftover limitations in the search feature by removing the hardcoded limit of 3 characters (which were actually bytes) in the pattern - Fix the search of partial words when searching media in folders
-
- Dec 17, 2022
-
-
Previously, we fast-forwarded the PCR values no matter what. This used to be handy but caused plausible invalid PCR as the fast-forwarded first PCRs values can't be checked against future encoded DTS. This patch approach the problem by synthesizing the first PCR as `VLC_TICK_0` to ensure no following DTS is lower and still giving a starting point of the stream to the next modules. We also avoid forwarding PCR values before any input is signaled to the `pcr_sync` utility, to avoid the exact same issue talked above.
-
As the pcr_sync utility should not be used in that case. The pcr_helper and pcr_sync tools are only signaled frames from tracks that are transcoded. This allow a normal PCR flow when transcoding effectively does nothing.
-
Mimicking a classic audio/video transcoding scenario.
-
Recording the current PCR event being treated by each ES allow to support tracks being processed far slower than the others. A typical example is transcoding both video and audio. The video pipeline will be significantly slower than the audio one causing PCR events audio-side being reached and marked as "passed" in advance relatively to the video ones. By keeping track of the current pcr_event being treated in each ES metadata, each track is now able to be processed independently from the others while having the PCR output of the pcr_sync utility still valid and consistent. This patch also removes the previous method that was both flawed (using the invalid `last_dts == VLC_TICK_INVALID` as a triggering condition) and CPU intensive (crawling up the pcr_events list to check the DTS every time).
-
We must check that the es recorded dts before the pcr has already been reached by a previous frame output before decreasing the number of es still holding a non-reached dts.
-
Wrap up the very verbose vlc_list accessor to only have to pass head around.
-
-
-
Fast-forwarding a PCR means that the pcr_sync immediately tells the API user that he can send it in the case there is no frame currently being watched. This happen in three scenarios: - The first SetPCR call is always fast-forwarded because no data should have entered the pcr_sync yet. - The stream has a "data-hole" and no frames enters it (most usual case being subtitles) while PCR keeps coming. This ensure PCR values are still forwarded even when the frame queue is empty. - The encoder has no delay. Ie: A frame is immediately encoded and returned. All PCR values must then be forwarded. The last point here wasn't handled correctly due to bad implementation and was a blocker for no-delay encoder (subtitles or some audio ones). Now, we check if the frame input and output are on the same page before queuing a PCR event and if it's the case, the PCR value is simply fast-forwarded. A following commit will add test cases for this usage.
-
-
This has become necessary to properly determine if all the frames have been output and whether to fast forward a PCR value or not.
-