diff options
author | Marton Balint <cus@passwd.hu> | 2020-01-04 19:03:24 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-01-07 21:51:45 +0100 |
commit | 4bf90e095b361cb11371921bf6eb357831d857b2 (patch) | |
tree | 6c0faef410171cce0206b7aa5822bdcc76aa8ec1 /libavformat/gxfenc.c | |
parent | 4d7f8254ac11e207f49348978231a6c4656d43e8 (diff) | |
download | ffmpeg-4bf90e095b361cb11371921bf6eb357831d857b2.tar.gz |
avformat: remove avio_flush() calls from the end of write_header functions
To make it consistent with other muxers.
The user can still control the generic flushing behaviour after write_header
(same way as after packets) using the -flush_packets option, the default
typically means to flush unless a non-streamed file output is used.
Therefore this change should have no adverse effect on streaming, even if it is
assumed that the first packet has a clean buffer, so small seekbacks within the
output buffer work even when the IO context is not seekable.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/gxfenc.c')
-rw-r--r-- | libavformat/gxfenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c index ad9ddea887..c9fb0dcd91 100644 --- a/libavformat/gxfenc.c +++ b/libavformat/gxfenc.c @@ -834,7 +834,6 @@ static int gxf_write_header(AVFormatContext *s) gxf->packet_count = 3; - avio_flush(pb); return 0; } |