thexai
thexai
## Description GUIFontTTF: use std::vector for m_char ## Motivation and context `m_char` dynamic array is perfect candidate to use `std::vector`: `m_numChars` ---> `m_char.size()` `m_maxChars` ---> `m_char.capacity()` `new Character[CHAR_CHUNK]` ---> `m_char.reserve(CHAR_CHUNK)`...
## Description - Moves dependencies path to a folder that contains Kodi's `MAJOR_VERSION` to allows keep various sets of dependencies (Matrix, Nexus, etc.) and no overwrite or delete between different...
## Description CLog: optimize logs performance, avoids string formatting and search/replace if line is not being logged ## Motivation and context Currently all log lines (even if are not logged...
## Description Forces delete ffmpeg build folder and creates it clean ## Motivation and context This is a follow of https://github.com/xbmc/xbmc/pull/20767 Seen in some jenkins log that some rare times...
## Description [FileSystem] Fix: not use CFileStreamBuffer in all network files Fixes https://github.com/xbmc/xbmc/issues/24629 ## Motivation and context Seems https://github.com/xbmc/xbmc/pull/24504 is causing issues on some binary add-ons. It may be that...
## Description [Windows] enable XAudio2 sink in Windows desktop + code improvements Now that Windows minimum version is Windows 8.1 is possible enable this sink also for Windows desktop as...
## Description [FileSystem] deprecate use of READ_CHUNKED flag This is a follow up of https://github.com/xbmc/xbmc/pull/25128 or better alternative as fixes the same in more elaborated way. Also fixes other potential...
## Description VideoPlayerAudio: limit max allowed Out-Of-Sync for "self-learning" to 80 ms ## Motivation and context As commented in https://github.com/xbmc/xbmc/pull/25229 recently found that use high values for `maxpassthroughoffsyncduration` e.g. 96...
## Bug report ### Describe the bug Here is a clear and concise description of what the problem is: Binary add-on `pvr.stalker` is missing in UWP-64 installers generated in jenkins...
## Bug report ### Describe the bug Here is a clear and concise description of what the problem is: Kodi fails to build in Debug mode ## Expected Behavior Here...