mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/assenc: optimize writing dialogs
An example where the preivously added API can be useful. Also fixes ticket #6390. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
a82f8f2f10
commit
61b4daf78c
|
@ -95,7 +95,7 @@ static void purge_dialogues(AVFormatContext *s, int force)
|
|||
ass->expected_readorder, dialogue->readorder);
|
||||
ass->expected_readorder = dialogue->readorder;
|
||||
}
|
||||
avio_printf(s->pb, "Dialogue: %s\r\n", dialogue->line);
|
||||
avio_print(s->pb, "Dialogue: ", dialogue->line, "\r\n");
|
||||
if (dialogue == ass->last_added_dialogue)
|
||||
ass->last_added_dialogue = next;
|
||||
av_freep(&dialogue->line);
|
||||
|
|
Loading…
Reference in New Issue