- Aug 03, 2022
-
-
Since relocation issues are now fixed.
-
ld: error: /home/tom/work/git/vlc-android/vlc/contrib/aarch64-linux-android/lib/libavcodec.a(videodsp.o):(function ff_prefetch_aarch64: .text+0x10): relocation R_AARCH64_CONDBR19 out of range: 13363404 is not in [-1048576, 1048575]; references ff_prefetch_aarch64 >>> referenced by videodsp.S:26 (libavcodec/aarch64/videodsp.S:26) >>> defined in /home/tom/work/git/vlc-android/vlc/contrib/aarch64-linux-android/lib/libavcodec.a(videodsp.o) clang++: error: linker command failed with exit code 1 (use -v to see invocation) Backport an existing patch from the master branch.
-
Disable neon_asm since it rely on arm-linux-androideabi-as (removed in NDK25). Temporary commit.
-
- Fix Android build with NDK25 - Fix va_list reuse - Add aribcc_renderer_set_merge_region_images() - Add aribcc_renderer_try_render()
-
I have absolutely no idea where "lgcc" is added between rav1e/cargo/cargo-c.
-
It needs the same patch than appleos. Maybe we should check for aarch64 instead.
-
execinfo.h is present but not necessary the functions (backtrace()) since it depends on the configured ANDROID_API. It's not a clean and "upstreamable" patch, but the execinfo code is gone upstream, so this patch is only temporary.
-
Cross tools changed from ${ARCH}-linux-android${API}-${TOOL} to llvm-${TOOL). Example: aarch64-linux-android21-strings to llvm-strings.
-
Fix build on Android NDK25, where swab() is a static inline function defined in <unistd.h>.
-
In some rare cases psz_text can be NULL, which would end up being passed to strlen, causing a crash. Fix CD 524d077a-d613-4f2f-85b1-2a2af0747888
-
- Aug 02, 2022
-
-
Fixes #27179.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
This is the return type recommended by the GNU/Bison reference infodoc. Refs #27180.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
This is more straightforward than #if/#error/#endif.
-
-
- Aug 01, 2022
-
-
Hugo Beauzée-Luyssen authored
Return an internal server error instead of unconditionally use a NULL body
-
Hugo Beauzée-Luyssen authored
The body is used unconditionally from the callsite
-
- 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>
-
-
-