mux: mp4: add additionally used TTML namespace

This commit is contained in:
François Cartegnie 2024-03-25 15:43:23 +01:00 committed by Steve Lhomme
parent 4667eaa2a5
commit 50aa52dab4
1 changed files with 1 additions and 1 deletions

View File

@ -845,7 +845,7 @@ static int MuxStream(sout_mux_t *p_mux, sout_input_t *p_input, mp4_stream_t *p_s
}
else if(mp4mux_track_GetFmt(p_stream->tinfo)->i_codec == VLC_CODEC_TTML)
{
const char emptyttml[] = "<tt xmlns=\"" TT_NS "\"/>";
const char emptyttml[] = "<tt xmlns=\"" TT_NS " " TT_NS_STYLING "\"/>";
p_empty = block_Alloc(sizeof(emptyttml) - 1);
if(p_empty)
memcpy(p_empty->p_buffer, emptyttml, p_empty->i_buffer);