summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Alaric Senat [Mon, 24 Jun 2024 16:11:23 +0000 (18:11 +0200)]
transcode: fix destructive assignment after drain
The drain checks are done after the first encoder output fetch. At this
point, `out` is already filled with some frames gotten from the encoder
some lines above:
```
// ...
if( p_sys->i_threads >= 1 )
{
/* Pick up any return data the encoder thread wants to output. */
vlc_mutex_lock( &p_sys->lock_out );
*out = p_sys->p_buffers;
p_sys->p_buffers = NULL;
vlc_mutex_unlock( &p_sys->lock_out );
}
// ...
```
This assignment currently leaks all previously gathered frames to
replace them by the drained output. This patch appends the drained
frames to the existing output instead.
Gbp-Pq: Name 0008-transcode-fix-destructive-assignment-after-drain.patch
Alexandre Janniaux [Fri, 21 Jun 2024 14:11:28 +0000 (16:11 +0200)]
vlc_common: remove warnings on VLC_OBJECT
Fix an infinite amount of warnings on Darwin:
../../include/vlc_variables.h:563:5: warning: due to lvalue conversion of the controlling expression, association of type 'const struct vlc_common_members' will never be selected because it is qualified [-Wunreachable-code-generic-assoc]
var_Create( p_obj, psz_name, VLC_VAR_STRING | VLC_VAR_DOINHERIT
^
../../include/vlc_variables.h:122:39: note: expanded from macro 'var_Create'
#define var_Create(a,b,c) var_Create( VLC_OBJECT(a), b, c )
^
../../include/vlc_common.h:481:15: note: expanded from macro 'VLC_OBJECT'
const struct vlc_common_members: (const vlc_object_t *)(&(x)->obj) \
Gbp-Pq: Name 0007-vlc_common-remove-warnings-on-VLC_OBJECT.patch
Tristan Matthews [Thu, 2 Feb 2023 04:39:36 +0000 (23:39 -0500)]
opus_header: fix channel mapping family 1 parsing
Fixes #27808
(cherry picked from commit
79fa6af0a98921f9d34933761f4fe20ef6c35309)
Gbp-Pq: Name 0006-opus_header-fix-channel-mapping-family-1-parsing.patch
François Cartegnie [Tue, 11 Jun 2024 10:26:11 +0000 (17:26 +0700)]
demux: avi: do not set up invalid bitsperpixel
UINT16_MAX is set and propagated from the bitmap header reader
refs #28661
Gbp-Pq: Name 0005-demux-avi-do-not-set-up-invalid-bitsperpixel.patch
Steve Lhomme [Wed, 5 Jun 2024 09:55:39 +0000 (11:55 +0200)]
demux: image: detect ICC profile before JFIF data
Fixes #18857
(cherry picked from commit
5ffd36ffa26a83ae498373f7d0ace1d82ab952f4)
Signed-off-by: Steve Lhomme <robux4@ycbcr.xyz>
Gbp-Pq: Name 0004-demux-image-detect-ICC-profile-before-JFIF-data.patch
Sebastian Ramacher [Wed, 28 Feb 2024 22:55:22 +0000 (23:55 +0100)]
Bump module ABI for time_t transition
Gbp-Pq: Name 0003-Bump-module-ABI-for-time_t-transition.patch
Sebastian Ramacher [Mon, 6 Jul 2020 22:18:39 +0000 (00:18 +0200)]
Do not generate cache during build
The generated cache is not used in the package. It causes spurious build
failures on the arm64 and ppc64el builds, that are not reproducible
elsewhere.
Gbp-Pq: Name 0002-Do-not-generate-cache-during-build.patch
Rémi Denis-Courmont [Sat, 16 Jun 2018 18:31:45 +0000 (21:31 +0300)]
configure: fix linking on RISC-V ISA
Gbp-Pq: Name 0001-configure-fix-linking-on-RISC-V-ISA.patch
Sebastian Ramacher [Tue, 21 Jan 2025 18:02:47 +0000 (19:02 +0100)]
vlc (3.0.21-7) unstable; urgency=medium
* debian/patches: Fix build with x265 4.1
[dgit import unpatched vlc 3.0.21-7]
Sebastian Ramacher [Tue, 21 Jan 2025 18:02:47 +0000 (19:02 +0100)]
Import vlc_3.0.21-7.debian.tar.xz
[dgit import tarball vlc 3.0.21-7 vlc_3.0.21-7.debian.tar.xz]
Sebastian Ramacher [Sun, 9 Jun 2024 16:01:08 +0000 (18:01 +0200)]
Import vlc_3.0.21.orig.tar.xz
[dgit import orig vlc_3.0.21.orig.tar.xz]