[vlc-commits] mux/ogg: Fix use of sout_mux_t as sout_mux_sys_t

Marvin Scholz git at videolan.org
Fri Feb 8 18:56:43 CET 2019


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Thu Feb  7 01:31:08 2019 +0100| [18e670afea3d5993ddad6fb910dee17a0bd9b7ef] | committer: Rémi Denis-Courmont

mux/ogg: Fix use of sout_mux_t as sout_mux_sys_t

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=18e670afea3d5993ddad6fb910dee17a0bd9b7ef
---

 modules/mux/ogg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c
index 3c92dc96e6..4bba9f89d6 100644
--- a/modules/mux/ogg.c
+++ b/modules/mux/ogg.c
@@ -1422,7 +1422,7 @@ static void OggRewriteFisheadPage( sout_mux_t *p_mux )
 
 static bool AllocateIndex( sout_mux_t *p_mux, sout_input_t *p_input )
 {
-    sout_mux_sys_t *p_sys = p_mux;
+    sout_mux_sys_t *p_sys = p_mux->p_sys;
     ogg_stream_t *p_stream = (ogg_stream_t *) p_input->p_sys;
     size_t i_size;
 



More information about the vlc-commits mailing list