From 94267c2236ce05555b95a12c77a0759e1ed38b9e Mon Sep 17 00:00:00 2001 From: Zhao Zhili <quinkblack@foxmail.com> Date: Tue, 19 Jun 2018 20:11:39 +0800 Subject: [PATCH] packetizer: mlp: initialize all callback fields Signed-off-by: Thomas Guillem <thomas@gllm.fr> --- modules/packetizer/mlp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/packetizer/mlp.c b/modules/packetizer/mlp.c index 6f16e6c8c3c6..87381937c354 100644 --- a/modules/packetizer/mlp.c +++ b/modules/packetizer/mlp.c @@ -494,6 +494,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; } -- GitLab