- Mar 26, 2020
-
-
Marvin Scholz authored
-
Marvin Scholz authored
-
Marvin Scholz authored
-
Marvin Scholz authored
-
Marvin Scholz authored
-
Marvin Scholz authored
-
- Mar 24, 2020
-
-
Marvin Scholz authored
-
Marvin Scholz authored
-
Marvin Scholz authored
-
OS/2 socket APIs use int not unsigned int in place of socklen_t. As a result, compilation is stopped at function call requiring socklen_t * because of type mismatch between int * and unsigned int *. Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Steve Lhomme authored
At least gcc 8 for the Raspberry Pi needs it.
-
- Mar 23, 2020
-
-
Hugo Beauzée-Luyssen authored
-
- Feb 20, 2020
-
-
Rémi Denis-Courmont authored
-
- Feb 13, 2020
-
-
Jean-Baptiste Kempf authored
-
- Jan 31, 2020
-
-
Thomas Guillem authored
"enable_brprot" was never set when --disable-branch-protection was passed, so the test != "no" was always true. Use the name "enable_branch_protection" instead that will be initialized by autoconf. PS: --disable-branch-protection seems to be needed to get symbols via gdb.
-
- Jan 27, 2020
-
-
Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Jan 22, 2020
-
-
Felix Paul Kühne authored
Both daemon and fork are declared for tvOS but are not available for use, so we need to explicitly ignore them.
-
- Jan 20, 2020
-
-
Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Jan 09, 2020
-
-
Hugo Beauzée-Luyssen authored
-
- Jan 01, 2020
-
-
Rémi Denis-Courmont authored
-
- Dec 09, 2019
-
-
Marvin Scholz authored
-
- Dec 05, 2019
-
-
Rémi Denis-Courmont authored
Use the new compiler flag syntax. This fixes a warning per build. This also enables use of BTI in C/C++ code.
-
- Nov 29, 2019
-
-
Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- Nov 18, 2019
-
-
Marvin Scholz authored
Compiling with Xcode 11 automatically enables the -fstack-check feature which causes stack checking error due to unaligned stack which seem to not be true. Lots of projects are affected by this currently so hopefully this will be fixed in an Xcode update.
-
- Nov 07, 2019
-
-
Thomas Guillem authored
getmntent_r is not necessarily available when the mntent.h header is present (cf. Android).
-
- Oct 18, 2019
-
-
Marvin Scholz authored
DOLT (provides doltlibtool and doltcompile to make compilation faster by not always running full libtool) does not handle --with-pic at all, so even when PIC is requested, it won't use it. As a workaround manually add it to X86ASMDEFS.
-
- Sep 21, 2019
-
-
Rémi Denis-Courmont authored
It does not make much difference in practice as they should always come together, but fstatat() is what the code base uses conditionally.
-
- Sep 18, 2019
-
-
This is based on the GSoC project of Jai Luthra which final code can be found here https://code.videolan.org/gsoc2019/darkapex/vlc/commits/nvdec_merge The added patches on top of this proposal (cleaning, fixing, more codecs) can be found here https://code.videolan.org/robUx4/vlc/tree/nvdec/10 By default we use Bob deinterlacing if the source is interlaced. Do not use the VP9 decoder if the profile is unknown, it may need 10 bits support and the hardware may not support it. This is the same way we support VP9 in DXVA. The decoder currently has a lower priority than libavcodec. Co-authored-by:
Jai Luthra <me@jailuthra.in> Co-authored-by:
Steve Lhomme <robux4@videolabs.io> Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Aug 14, 2019
-
-
Hugo Beauzée-Luyssen authored
-
- Aug 08, 2019
-
-
Hugo Beauzée-Luyssen authored
-
- Aug 06, 2019
-
-
Thomas Guillem authored
That support port specifications.
-
- Jul 26, 2019
-
-
Rémi Denis-Courmont authored
aligned_alloc() is not portably suitable for over-alignments. posix_memalign()/memalign() are still needed. This essentially reverts commit 34cd9656.
-
- Jul 25, 2019
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- Jul 16, 2019
-
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Jul 10, 2019
-
-
Rémi Denis-Courmont authored
If the compiler supports the the dedicated code generation command line flag, use it to provide return/backward control flow integrity (CFI). This provides protection against return-oriented programming attacks on where supported. This has no effects if the processor and/or operating system do not support the extension, except for adding no-ops in the generated machine code. So far the AArch64 assembler code in VLC is only made of leaf functions which do not not store/load the link register value, so there are no needs to use the Pointer Authentication instructions manually (at least not for return-CFI).
-
- Jul 06, 2019
-
-
Erwan Tulou authored
This reverts commit 376d2b56.
-
- Jul 01, 2019
-
-
Marvin Scholz authored
There is no tizen_audio module anymore.
-
- Jun 20, 2019
-
-
Marvin Scholz authored
HAVE_TIZEN_SDK is not used anywhere in the code anymore, so this is not needed.
-
- May 21, 2019
-
-
Steve Lhomme authored
This will only be enabled when building windows targets and will only work when compiling with Clang.
-