mirror of https://git.ffmpeg.org/ffmpeg.git
movenc: Don't flush after each written packet
This should improve write performance quite significantly. --- Tested with both writing a normal mp4, by using the faststart feature and writing a fragmented mp4 file; all turn out with the same md5sum as before. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
7df9e693a3
commit
0fbda03e5c
|
@ -2961,8 +2961,6 @@ int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
trk->sample_count += samples_in_chunk;
|
||||
mov->mdat_size += size;
|
||||
|
||||
avio_flush(pb);
|
||||
|
||||
if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams)
|
||||
ff_mov_add_hinted_packet(s, pkt, trk->hint_track, trk->entry,
|
||||
reformatted_data, size);
|
||||
|
|
Loading…
Reference in New Issue