diff options
author | Marton Balint <cus@passwd.hu> | 2019-12-27 13:53:00 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-01-07 21:51:45 +0100 |
commit | 3414115cd4e1eac555ebd3e9658cb9ba3c5b246b (patch) | |
tree | c94e3af27e71e10e31e7ed87de1834f13249ad6e /libavformat/mxfenc.c | |
parent | f4a8ea7ff6fd83ec925cfd3fccde538196cff85a (diff) | |
download | ffmpeg-3414115cd4e1eac555ebd3e9658cb9ba3c5b246b.tar.gz |
avformat: convert some avio_flush() calls to avio_write_marker(AVIO_DATA_MARKER_FLUSH_POINT)
Converting explicit avio_flush() calls helps us to buffer more data and avoid
flushing the IO context too often which causes reduced IO throughput for
non-streamed file output.
The user can control FLUSH_POINT flushing behaviour using the -flush_packets
option, the default typically means to flush unless a non-streamed file output
is used, so this change should have no adverse effect on streaming even if it
is assumed that after an avio_flush() the output buffer is clean so small
seekbacks within the output buffer will work even when the IO context is not
seekable.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r-- | libavformat/mxfenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 396768d51f..374a83d069 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -1936,7 +1936,7 @@ static int mxf_write_partition(AVFormatContext *s, int bodysid, } if(key) - avio_flush(pb); + avio_write_marker(pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_FLUSH_POINT); return 0; } |