diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-01-12 01:37:54 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-01-12 01:38:44 +0100 |
| commit | c8c0993707b0780cb362892b2f78decaabce5f72 (patch) | |
| tree | 88b972b3ffafd31ffdeb0417499a896dd0700fd8 /src/stream.c | |
| parent | Free all allocations at end + use calloc instead of memset (diff) | |
| download | blind-c8c0993707b0780cb362892b2f78decaabce5f72.tar.gz blind-c8c0993707b0780cb362892b2f78decaabce5f72.tar.bz2 blind-c8c0993707b0780cb362892b2f78decaabce5f72.tar.xz | |
Add vu-rewrite-head
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/stream.c')
| -rw-r--r-- | src/stream.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream.c b/src/stream.c index c863c23..b4541b0 100644 --- a/src/stream.c +++ b/src/stream.c @@ -44,19 +44,19 @@ eninit_stream(int status, struct stream *stream) errno = 0; stream->frames = strtoul(stream->buf, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too long\n", stream->file); + eprintf("%s: video is too long\n", stream->file); if (errno || *end) goto bad_format; errno = 0; stream->width = strtoul(w, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too wide\n", stream->file); + eprintf("%s: video is too wide\n", stream->file); if (errno || *end) goto bad_format; errno = 0; stream->height = strtoul(h, &end, 10); if (errno == ERANGE && *stream->buf != '-') - eprintf("%s: too tall\n", stream->file); + eprintf("%s: video is too tall\n", stream->file); if (errno || *end) goto bad_format; |
