1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

* modules/stream_out/transcode.c: bug fix for subtitles transcoding.

This commit is contained in:
Gildas Bazin 2004-10-07 09:27:02 +00:00
parent 0f9da48d78
commit a9583b5d9c

View File

@ -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 );