summaryrefslogtreecommitdiff
path: root/libavformat/spdifenc.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-25 00:23:46 +0100
committerMartin Storsjö <martin@martin.st>2013-09-16 22:17:33 +0300
commit73084391588b0f150737990038829cac5013dd68 (patch)
treef7a5755d0651098c36deabaf47f9d6c37a35e721 /libavformat/spdifenc.c
parent596e5d4783ca951258a7c580951fd161f1785ec1 (diff)
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/spdifenc.c')
-rw-r--r--libavformat/spdifenc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c
index 1f37340a8b..c350f7251c 100644
--- a/libavformat/spdifenc.c
+++ b/libavformat/spdifenc.c
@@ -538,7 +538,6 @@ static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt)
av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n",
ctx->data_type, ctx->out_bytes, ctx->pkt_offset);
- avio_flush(s->pb);
return 0;
}