[vlc-commits] [Git][videolan/vlc][3.0.x] 2 commits: mlp: missing initializer (fixes #20494)

Felix Paul Kühne (@fkuehne) gitlab at videolan.org
Sun Mar 15 06:13:10 UTC 2026



Felix Paul Kühne pushed to branch 3.0.x at VideoLAN / VLC


Commits:
af5ff44d by Rémi Denis-Courmont at 2026-03-15T06:48:07+01:00
mlp: missing initializer (fixes #20494)

(cherry picked from commit 3667d57baf436a46e2afb47e843bac0b8922be82)
Signed-off-by: Thomas Guillem <thomas at gllm.fr>

- - - - -
9886bd12 by Zhao Zhili at 2026-03-15T06:48:07+01:00
packetizer: mlp: initialize all callback fields

Signed-off-by: Thomas Guillem <thomas at gllm.fr>
(cherry picked from commit 94267c2236ce05555b95a12c77a0759e1ed38b9e)
Signed-off-by: Thomas Guillem <thomas at gllm.fr>

- - - - -


1 changed file:

- modules/packetizer/mlp.c


Changes:

=====================================
modules/packetizer/mlp.c
=====================================
@@ -487,6 +487,7 @@ static int Open( vlc_object_t *p_this )
 
     /* */
     p_sys->i_state = STATE_NOSYNC;
+    date_Init( &p_sys->end_date, 1, 1 );
     date_Set( &p_sys->end_date, 0 );
 
     block_BytestreamInit( &p_sys->bytestream );
@@ -500,6 +501,7 @@ static int Open( vlc_object_t *p_this )
     /* Set callback */
     p_dec->pf_packetize = Packetize;
     p_dec->pf_flush     = Flush;
+    p_dec->pf_get_cc    = NULL;
     return VLC_SUCCESS;
 }
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/b3c21750e85911dc8265c52b6188a7d3c7583af7...9886bd129efaefc19f0bff200a0c68fbf42990a6

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/b3c21750e85911dc8265c52b6188a7d3c7583af7...9886bd129efaefc19f0bff200a0c68fbf42990a6
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list