mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
aviocat: Check for output write errors
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
585dc1aece
commit
f19fbfbdc6
@ -107,6 +107,11 @@ int main(int argc, char **argv)
|
|||||||
if (n <= 0)
|
if (n <= 0)
|
||||||
break;
|
break;
|
||||||
avio_write(output, buf, n);
|
avio_write(output, buf, n);
|
||||||
|
if (output->error) {
|
||||||
|
av_strerror(output->error, errbuf, sizeof(errbuf));
|
||||||
|
fprintf(stderr, "Unable to write %s: %s\n", output_url, errbuf);
|
||||||
|
break;
|
||||||
|
}
|
||||||
stream_pos += n;
|
stream_pos += n;
|
||||||
if (bps) {
|
if (bps) {
|
||||||
avio_flush(output);
|
avio_flush(output);
|
||||||
|
Loading…
Reference in New Issue
Block a user