summaryrefslogtreecommitdiff
path: root/libavformat/wtvenc.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-25 00:23:46 +0100
committerClément Bœsch <ubitux@gmail.com>2013-04-14 21:16:53 +0200
commit8de9bb6e5e527e2bcc8b2cff2da4107ecef23421 (patch)
tree3e15b14b5c1eb821c49b232e9362eb6921cdbfc1 /libavformat/wtvenc.c
parentbc1847addf34a6c9216512b458f6a993c60461cb (diff)
downloadffmpeg-8de9bb6e5e527e2bcc8b2cff2da4107ecef23421.tar.gz
lavf: remove some flushing in write_packet muxers callbacks.
Since 4f112a8e3, this is not necessary anymore. Also, it allows to actually disable the flushing.
Diffstat (limited to 'libavformat/wtvenc.c')
-rw-r--r--libavformat/wtvenc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c
index 22917a454c..410a2dc355 100644
--- a/libavformat/wtvenc.c
+++ b/libavformat/wtvenc.c
@@ -457,7 +457,6 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
write_pad(pb, WTV_PAD8(pkt->size) - pkt->size);
wctx->serial++;
- avio_flush(pb);
return 0;
}