- Sep 24, 2021
-
-
Fix a regression introduced by ec78dfa6 where the lock was forgotten.
-
- Sep 23, 2021
-
-
-
-
The input picture may contain padding, for two reasons: 1. the rectangle defined by the picture_t offset and visible width and height may not cover the whole picture size; 2. if the OpenGL API does not support NPOT textures, textures are created with power-of-two dimensions. As a consequence, for sampling, the coordinates (between 0 and 1 in both dimensions) must be transformed to take the padding into account. These transformations were computed and performed per-plane. Therefore, there were _n_ "TexCoordsMaps" matrices for a picture with _n_ planes. However, these transformations are necessarily the same for all planes: 1. the picture_t offset/sizes are defined for the whole picture (then scaled appropriately for each plane); 2. since the ratio between different planes of the same pictures is always a power of two (e.g. in YUV 4:2:0, the size of U and V planes are half the size of the Y plane in both dimensions), this property holds even if we align the dimensions of each plane texture to the next power-of-two. Therefore, use a single transformation matrix.
-
Multiply two vec2 directly instead of multiplying their components separately.
-
We request kCVPixelFormatType_32BGRA which is BGRA, not RGB32.
-
CMTime is **not** equivalent to vlc_tick_t. In particular, the timescale doesn't match. So it should be converted before usage. In addition, GET_TIME is supposed to return where the access is currently reading, which should also match the timestamps of the output frames from the access. Fixes #26101
-
AVCaptureVideoDataOutputSampleBufferDelegate is implemented by VLCAVDecompressedVideoOutput but wasn't signalled, leading to warnings when compiling.
-
ARC is not supported when storing NSObject in a structure. But it is well-supported when storing a NSObject as (__bridge_retained void*) into the p_sys until (__bridge_tranfer) releases it. It highly simplify the whole handling of ARC objects and avoid using CFRelease/CFRetain in the code, unifying with other Objective-C modules like VLCVideoUIView or VLCOpenGLES2VideoView.
-
-
...instead of using custom debug strings
-
-
-
-
Set the framerate to 1 / framerate_base, avoiding the following warning for a 30fps capture stream: rawvideo decoder warning: invalid frame rate 0/30000, using 25 fps instead
-
- Sep 22, 2021
-
-
-
-
Add a property that returns the NSImage that is currently used as application icon for VLC. This is not always the same as NSImageNameApplicationIcon due to easter eggs like the Christmas cone.
-
- Sep 21, 2021
-
-
refs #26126
-
If a fallback chroma is used instead of the original chroma, we need to trigger the insertion of a video converter to adapt to this new chroma. Forgotten from c5ea9b76. Regression from b79c2b22 which removed the converter for RGB fallbacks and the following change in vout_helper c5ea9b76 which reintroduce the conversion without taking care of converters for RGB. The proper way to avoid the insertion of converters is to add support for the formats in the interop.c instead of using RGB fallbacks.
-
Checking only fallbacks means that VLC_CODEC_BGRA will typically be reinterpreted as VLC_CODEC_RBG32 and will not display correctly. It might be a regression from previous change refactoring the interop code, and the resulting chroma issue is a regression from b79c2b22 which removed the converter for RGB fallbacks and the following change in vout_helper c5ea9b76 which reintroduce the conversion without taking care of converters for RGB.
-
The code will be common to the cases where we found a valid chroma for the OpenGL interop.
-
-
- Sep 20, 2021
-
-
-
fixes 'Binding loop detected for property artistModel' errors
-
fixup 6b96e6a0
-
-
-
When profiling the media library on a small samples folder, the calls to EnsureUTF8 end up accounting for about 8% of the runtime (including calls to vlc_towc) By not always executing it, especially when the value is expected *not* to be UTF8 but ascii, we end up spending only 0.04% of the time in EnsureUTF8 This also saves useless calls when the value is to be dropped
-
It's used only once
-
-
-
- Sep 19, 2021
-
-
This reverts commit de9d757d. This kludge is no longer necessary.
-
This accepts a lone ':', which is not followed by two forward slashes if the URL lacks a host part.
-
FD must be positive `int`. The test in unsigned space is equivalent to `fd < 0 || fd > INT_MAX`, but: - it is faster and, - it will not cause impossible predicate warnings on platforms where `INT_MAX` equals `LONG_MAX`.
-
ref #25989
-
ref #25989
-
-
-