- Jul 31, 2022
-
-
A i_chapters_of_title of -1 mean the current title, so fetch it in that case. It fixes a crash while attempting to reach the title array at -1.
-
- Jul 30, 2022
-
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Mention the new recommended way of requiring modules.
-
The `-I cli` no longer starts the lua CLI, luacli does not work either, only `-I luaintf --lua-intf cli` does actually start the Lua CLI interface properly.
-
The header for luac files changed, so the offset to check had to be increased. Additionally the contrib lua library now has the version in the filename.
-
-
-
-
The file directly modifies the global table (_G) so it does not seem necessary at all to expose anything explicitly.
-
-
-
-
-
-
-
refs #27164
-
The arguments to AllocatePluginFile were written in reverse, leading to vlc_stat failing to find the file. In addition the value that should have been written `-(sizeof ".framework" -1)` was actually written as `-sizeof ".framework" -1` and thus `foo_plugin` was instead `foo_plug`. Typo from function refactor in 70d3002b.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
-
-
- Jul 29, 2022
-
-
fixup fe03c25a
-
This script works using tools that operate on the no longer used GConf database.
-
These were used by SVN, we are no longer using that though.
-
These were used by SVN, we are no longer using that though.
-
These were used by SVN, we are no longer using that though.
-
These were used by SVN, we are no longer using that though.
-
A window is assigned to a QQuickItem after it gets constructed.
-
This is an optimization for the rendering by making textures opaque when source image is also opaque. Instead of clipping the image, a custom geometry denoting rounded rectangular shape is defined.
-
-
applyRadius() does more than its name suggests.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
- Jul 28, 2022
-
-
-
This fixes a sorting issue we had in our network views.
-
- Jul 27, 2022
-
-
Asked by API users, more convenient than dropping !selected tracks ourself.
-
-
When compiling and not having writev/readv, the following error happens: make[2]: Entering directory '/home/janniaux/Projects/videolabs/vlc/build-tsan/compat' CC strlcpy.lo CC strnstr.lo In file included from ../config.h:952, from ../../compat/strnstr.c:22: ../../include/vlc_fixups.h:232:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’? 232 | ssize_t readv(int, const struct iovec *, int); | ^~~~~~~ | size_t In file included from ../config.h:952, from ../../compat/strlcpy.c:22: ../../include/vlc_fixups.h:232:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’? 232 | ssize_t readv(int, const struct iovec *, int); | ^~~~~~~ | size_t ../../include/vlc_fixups.h:237:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’? 237 | ssize_t writev(int, const struct iovec *, int); | ^~~~~~~ | size_t ../../include/vlc_fixups.h:237:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’? 237 | ssize_t writev(int, const struct iovec *, int); | ^~~~~~~ | size_t make[2]: *** [Makefile:1531: strnstr.lo] Error 1
-
- Jul 26, 2022
-
-
While Darwin implements fstatvfs, the statvfs structures f_flag field is only defined to contain two flags, ST_RDONLY and ST_NOSUID. So the check for MNT_LOCAL would always be false, reporting all files as non-local. To mitigate that, on Darwin we can just use fstatfs and check statfs.f_flags for MNT_LOCAL.
-
-
artwork path may be ""
-
After 8f42dc5c commit h264_avcC_to_AnnexB_NAL() and hevc_hvcC_to_AnnexB_NAL() are always allocate memory using malloc(). Allocated block assigned to pBuffer and changed initially allocated pointer value. According to OpenMAX specification, OMX component should not free this buffer and it will leak. Furthermore, OMX component may rely on initially allocated buffer address. Copying the data into the original buffer and free temporary memory block should fix both issues.
-