1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* See LICENSE file for copyright and license details. */
#include "stream.h"
#include "util.h"
#include <alloca.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
USAGE("(file (end-point | 'end')) ...")
int
main(int argc, char *argv[])
{
struct stream stream;
size_t *ends, i, parts, ptr, end, frame_size, max, ptw, n;
FILE *fp;
int fd;
ssize_t r;
ENOFLAGS(argc < 2 || argc % 2);
stream.file = "<stdin>";
stream.fd = STDIN_FILENO;
einit_stream(&stream);
echeck_frame_size(stream.width, stream.height, stream.pixel_size, 0, stream.file);
frame_size = stream.width * stream.height * stream.pixel_size;
if (stream.frames > SSIZE_MAX / frame_size)
eprintf("%s: video is too large\n", stream.file);
parts = (size_t)argc / 2;
ends = alloca(parts * sizeof(*ends));
for (i = 0; i < parts; i++) {
if (!strcmp(argv[i * 2 + 1], "end"))
ends[i] = stream.frames;
else if (tozu(argv[i * 2 + 1], 0, SIZE_MAX, ends + i))
eprintf("the end point must be an integer in [0, %zu]\n", SIZE_MAX);
if (i && ends[i] <= ends[i - 1])
eprintf("the end points must be in strictly ascending order\n");
if (ends[i] > stream.frames)
eprintf("frame %zu is beyond the end of the video\n", ends[i]);
}
ptr = 0;
for (i = 0; i < parts; i++) {
fd = eopen(argv[i * 2], O_WRONLY | O_CREAT | O_TRUNC, 0666);
fp = fdopen(fd, "wb");
stream.frames = ends[i] - (i ? ends[i - 1] : 0);
fprint_stream_head(fp, &stream);
efflush(fp, argv[i * 2]);
for (end = ends[i] * frame_size; ptr < end; ptr += n) {
for (ptw = ptr; stream.ptr && ptw < end;) {
max = end - ptw;
max = max < stream.ptr ? max : stream.ptr;
r = write(fd, stream.buf, max);
if (r < 0)
eprintf("write %s:\n", argv[i * 2]);
memmove(stream.buf, stream.buf + r, stream.ptr - (size_t)r);
}
n = eread_stream(&stream, end - ptr);
if (n == 0)
eprintf("%s: file is shorter than expected\n", stream.file);
}
if (fclose(fp))
eprintf("%s:", argv[i * 2]);
close(fd);
}
return 0;
}
|