mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
mux: Make sure that the data is actually written
And forward the error if it is not. Bug-Id: 881 CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
e05f7ed543
commit
9ad1e0c12c
@ -352,8 +352,12 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
}
|
||||
ret = s->oformat->write_packet(s, pkt);
|
||||
|
||||
if (s->pb && ret >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS)
|
||||
avio_flush(s->pb);
|
||||
if (s->pb && ret >= 0) {
|
||||
if (s->flags & AVFMT_FLAG_FLUSH_PACKETS)
|
||||
avio_flush(s->pb);
|
||||
if (s->pb->error < 0)
|
||||
ret = s->pb->error;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user