- Mar 09, 2025
-
-
It seems that `TableViewDelegate` was forgotten to be added here.
-
Qt 6.9 introduces `TableViewDelegate` in Qt Quick Controls, this causes name conflict here as the import is not explicitly stated when resolving `TableViewDelegate` in `TableViewExt.qml` currently. Alternatively the name can be kept, and `Widgets.TableViewDelegate` can be used to specify which `TableViewDelegate` to use, but this is probably safer than that approach.
-
Steve Lhomme authored
-
Steve Lhomme authored
So we don't rely on possibly outdated headers from a previous installation. The variables in libplacebo have been around since [^1] which is in version 3.104.0 and above. We require version 4.192. [^1]: https://github.com/haasn/libplacebo/commit/98b92cd6b47dc6ed95cc69e9bb4a51b79b44573b
-
Steve Lhomme authored
It defines the classes not available in the Windows SDK that used to be in qedit.h.
-
Steve Lhomme authored
qedit.h is gone from the Windows SDK since Windows 7 [^1]. > To obtain Qedit.h, download the Microsoft Windows SDK Update for Windows > Vista and .NET Framework 3.0. Qedit.h is not available in the Microsoft Windows > SDK for Windows 7 and .NET Framework 3.5 Service Pack 1. [^1]: https://learn.microsoft.com/en-us/windows/win32/directshow/isamplegrabber
-
Steve Lhomme authored
It was added in 3f7b2417284ef7cda5d4f3e816370f518667bfc7 [^1] which is in mingw-w64 v12. [^1]: https://github.com/mingw-w64/mingw-w64/commit/3f7b2417284ef7cda5d4f3e816370f518667bfc7
-
Steve Lhomme authored
It's not needed in bdadefs.h.
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
We don't use or support tabs, so explicitly disable tabs in root VLCWindow class Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
-
-
-
Use max from the first pair (mW/dBm) with a 1000.0 divisor to match Apple's behavior. Verified with iTunNORM (`00001000 00000100`), which yields -6.12 dB; min would produce +15.92 dB. The negative sign in the formula -10 * log10(x/1000) causes larger values to produce increasingly negative gain. Using the max from the louder channel results in greater attenuation.
-
-
-
-
-
- Mar 08, 2025
-
-
The behavior may be different when qmake generates the build files depending on the build mode. For example, with MinGW-w64 `-Wl,-s` (which stands for stripping symbol information) is added to the linker flags if build mode is (directed or assumed to be) release. If debug mode is not enabled, the default behavior is retained, which appears to be release. I specifically did not request release mode when debug is false, because debug being false does not necessarily mean release.
-
Using the wide char API allows handling pathes with non ANSI characters. Using the native Windows API allows retrieving just the flags we want. This should work in UWP apart from the network connection with the credentials.
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com> egwg Signed-off-by:
Claudio Cambra <developer@claudiocambra.com> afefa Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
This is needed with the sha512sum introduced on recent macOS versions and matches what is already done for contribs too.
-
- Mar 07, 2025
-
-
Steve Lhomme authored
We don't need vlc_strtof_c() since we already have the float value. We also don't need to check what is after the number (a comment for example). As long as it's a number it should be FPS. Anything else other than "FORMAT=TIME" is bogus. So we don't need to get the remaining part of the string.
-
Steve Lhomme authored
We still need to look for the wait & duration values after that.
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
Most of the time that's the first line we will get. If not the line can contain different things other than a FORMAT setting. And calling vlc_strtof_c without checking the lines contains 2 values was bound to use 0 if the line did not actually contain numbers.
-
-
-
For unresolved items, currently the title might be "Unknown Title". In this case, there is no information provided to the user regarding the item to recognize what it is.
-
-
-