diff --git a/cmdutils.c b/cmdutils.c index 16067cb556e6ccc3a8bd7928e9123ec4b6f1314a..955b485ee8db5a6717660559321b72df90ebc986 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -110,6 +110,14 @@ void print_error(const char *filename, int err) case AVERROR_NOFMT: fprintf(stderr, "%s: Unknown format\n", filename); break; + case AVERROR_IO: + fprintf(stderr, "%s: I/O error occured\n" + "Usually that means that input file is truncated and/or corrupted.\n", + filename); + break; + case AVERROR_NOMEM: + fprintf(stderr, "%s: memory allocation error occured\n", filename); + break; default: fprintf(stderr, "%s: Error while opening file\n", filename); break;