Skip to content

Commit

Permalink
mux: mp4: add additionally used TTML namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fcartegnie authored and robUx4 committed Mar 27, 2024
1 parent 4667eaa commit 50aa52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mux/mp4/mp4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 50aa52d

Please sign in to comment.