[vlc-devel] [PATCH 12/16] mux: ps: remove trailing characters
Alexandre Janniaux
ajanni at videolabs.io
Mon Mar 15 17:03:05 UTC 2021
---
modules/mux/mpeg/ps.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/mux/mpeg/ps.c b/modules/mux/mpeg/ps.c
index be8ee2a693..4354998b92 100644
--- a/modules/mux/mpeg/ps.c
+++ b/modules/mux/mpeg/ps.c
@@ -124,7 +124,7 @@ typedef struct
int i_system_header;
vlc_tick_t i_dts_delay;
int i_rate_bound; /* units of 50 bytes/second */
-
+
int64_t i_instant_bitrate;
int64_t i_instant_size;
vlc_tick_t i_instant_dts;
@@ -161,7 +161,7 @@ static int Open( vlc_object_t *p_this )
.mux = Mux,
};
p_mux->ops = &mux_ops;
- p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
+ p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
/* Init free stream id */
StreamIdInit( p_sys->stream_id_a52, 8 );
@@ -265,7 +265,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
{
sout_mux_sys_t *p_sys = p_mux->p_sys;
ps_stream_t *p_stream;
-
+
msg_Dbg( p_mux, "adding input codec=%4.4s",
(char*)&p_input->p_fmt->i_codec );
--
2.30.2
More information about the vlc-devel
mailing list