- Sep 03, 2022
-
-
Rémi Denis-Courmont authored
-
- Sep 02, 2022
-
-
Rémi Denis-Courmont authored
See a5b9278c.
-
Visual pleasure the effect provides is not justified due to the side effects the effect causes.
-
-
-
-
Steve Lhomme authored
The snapshot cannot be created so the filter cannot be used.
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
And fix leak
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
This kind of error occurred on darwin when shasum check attempt wat made on Qt contribs : ``` + make fetch grep -- " qtdeclarative-everywhere-src-5.15.1.tar.xz$" "../src/qtdeclarative/SHA512SUMS" && (cd ../tarballs && shasum -a 512 --check /dev/stdin) < "../src/qtdeclarative/SHA512SUMS" 193ec706b764330a2ae00614b13482b7586642f9cfd32458e8c975daa07ba25f0f9887de0918c4034f52f613b860677c09c46a3b7d07d4229446cfc0805bcccd qtdeclarative-everywhere-src-5.15.1.tar.xz shasum: /dev/stdin: no properly formatted SHA checksum lines found make: *** [.sum-qtdeclarative] Error 1 umxprime@umxprime-m1 ~ % shasum -a 512 /Users/umxprime/code/videolan/vlc/contrib/tarballs/qtdeclarative-everywhere-src-5.15.1.tar.xz 193ec706b764330a2ae00614b13482b7586642f9cfd32458e8c975daa07ba25f0f9887de0918c4034f52f613b860677c09c46a3b7d07d4229446cfc0805bcccd /Users/umxprime/code/videolan/vlc/contrib/tarballs/qtdeclarative-everywhere-src-5.15.1.tar.xz umxprime@umxprime-m1 ~ % ``` This was mainly due to a missing whitespace between the sum and the filename in the SHA512SUMS list
-
- Sep 01, 2022
-
-
Due to the severely increased complexity of "n" descrambling code, a quick fix is unfortunately not foreseeable. For now, let users know more clearly what's going on and what's to expect or not. Ref #27227
-
The descrambling script section was updated from a simple and linear chain of calls, to a complex execution tree with conditional branches. Failure to recognize and parse this call structure (or lack thereof) resulted in a silent no-op. Add a check to properly report an error. Ref #27227
-
It was possible, when encountering different code from what was expected for some known transformations, to void the code parsing pointer instead of advancing it, resulting in a subsequent crash of the script and total playback failure. Add a fallback and check, to prevent and gracefully deal with this, and still allow playback, even if throttled, in case of descrambling failure.
-
Steve Lhomme authored
The CMAKE variable already sets it for all targets.
-
When inheriting from classes with a virtual destructor, it is not needed to declare the destructor both as virtual and override. In line with the normal policy for virtual vs override, use virtual only when declaring the base class destructor.
-
-
Steve Lhomme authored
Regression from a89c7662 that is still usable in UWP.
-
- Aug 31, 2022
-
-
François Cartegnie authored
-
-
bogus seek after chained content regression by 7b091b21
-
-
We can't assume page are small. and seeks to wrong/outside of stream pos if stream does not start time 0
-
-
-
returning negative error on these
-
-
Audio latency callback is using the fifo lock, which cannot be released until the audio output is destroyed. In general, outputs can use the fifo, and we need to release/detach them from the input decoder before freeing the lock.
-
- Aug 30, 2022
-
-
1111 becomes 1111000064 due to imprecision
-
Steve Lhomme authored
PathIsNetworkPathW() is a basic function that only checks for \\ and [a-zA-Z]:\\ pathes [1]. It's also not available on UWP apps. We can do the same by checking the UTF-8 string directly without even a conversion to wide char string. [1] https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-pathisnetworkpathw
-
-
Steve Lhomme authored
The 4x 12 bits packing is making the bitfield packing messy and incompatible with (non)MS packing in dvdnav. In the end the structures are not read as packed structures so we don't need to keep them packed. Upstream patch proposed at libdvdread!42
-