Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-25 03:23:46 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-14 23:16:53 +0400
commit8de9bb6e5e527e2bcc8b2cff2da4107ecef23421 (patch)
tree3e15b14b5c1eb821c49b232e9362eb6921cdbfc1 /libavformat/gxfenc.c
parentbc1847addf34a6c9216512b458f6a993c60461cb (diff)
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/gxfenc.c')
-rw-r--r--libavformat/gxfenc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c
index 28acb74db9..9322f7b88b 100644
--- a/libavformat/gxfenc.c
+++ b/libavformat/gxfenc.c
@@ -950,8 +950,6 @@ static int gxf_write_packet(AVFormatContext *s, AVPacket *pkt)
gxf->packet_count = 0;
}
- avio_flush(pb);
-
return 0;
}