diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-25 00:23:46 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-09-16 22:17:33 +0300 |
commit | 73084391588b0f150737990038829cac5013dd68 (patch) | |
tree | f7a5755d0651098c36deabaf47f9d6c37a35e721 /libavformat/framecrcenc.c | |
parent | 596e5d4783ca951258a7c580951fd161f1785ec1 (diff) | |
download | ffmpeg-73084391588b0f150737990038829cac5013dd68.tar.gz |
lavf: Don't explicitly flush after each written packet in muxers
Since 596e5d4783, this is not necessary anymore. It also allows to
actually disable the flushing, improving write performance (but
possibly giving worse latency in real-time streaming).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/framecrcenc.c')
-rw-r--r-- | libavformat/framecrcenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/framecrcenc.c b/libavformat/framecrcenc.c index fed0cca430..dd55c129f0 100644 --- a/libavformat/framecrcenc.c +++ b/libavformat/framecrcenc.c @@ -31,7 +31,6 @@ static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt) snprintf(buf, sizeof(buf), "%d, %10"PRId64", %10"PRId64", %8d, %8d, 0x%08x\n", pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size, crc); avio_write(s->pb, buf, strlen(buf)); - avio_flush(s->pb); return 0; } |