lavf: remove some flushing in write_packet muxers callbacks.

Since 4f112a8e3, this is not necessary anymore. Also, it allows to
actually disable the flushing.
This commit is contained in:
Clément Bœsch
2013-03-25 00:23:46 +01:00
parent bc1847addf
commit 8de9bb6e5e
27 changed files with 0 additions and 33 deletions

View File

@@ -110,7 +110,6 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
avio_write(pb, ptr, size - 24);
ptr += size - 24; left -= size - 24;
}
avio_flush(pb);
return 0;
}