From a9583b5d9c501e00463f80f994c7d2e759437114 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Thu, 7 Oct 2004 09:27:02 +0000 Subject: [PATCH] * modules/stream_out/transcode.c: bug fix for subtitles transcoding. --- modules/stream_out/transcode.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/stream_out/transcode.c b/modules/stream_out/transcode.c index 0f8cf73679..9316d66af3 100644 --- a/modules/stream_out/transcode.c +++ b/modules/stream_out/transcode.c @@ -1841,7 +1841,8 @@ static int transcode_spu_new( sout_stream_t *p_stream, sout_stream_id_t *id ) return VLC_EGENERIC; } } - else if( !p_sys->p_spu ) + + if( !p_sys->p_spu ) { p_sys->p_spu = spu_Create( p_stream ); spu_Init( p_sys->p_spu ); -- GitLab