diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-25 00:23:46 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 21:16:53 +0200 |
commit | 8de9bb6e5e527e2bcc8b2cff2da4107ecef23421 (patch) | |
tree | 3e15b14b5c1eb821c49b232e9362eb6921cdbfc1 /libavformat/spdifenc.c | |
parent | bc1847addf34a6c9216512b458f6a993c60461cb (diff) | |
download | ffmpeg-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/spdifenc.c')
-rw-r--r-- | libavformat/spdifenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/spdifenc.c b/libavformat/spdifenc.c index 778ab88a15..857c20de22 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; } |