From 9ac1c884a00674b9cbceef8f5685ccd6a7cca9b0 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 18 Oct 2008 18:18:52 +0000 Subject: [PATCH] Provide more context for the error message issued when no preset file is found. Originally committed as revision 15635 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index bad954bafb..d8a3d500ee 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3691,7 +3691,7 @@ static int opt_preset(const char *opt, const char *arg) } if(!f){ - fprintf(stderr, "Preset file not found\n"); + fprintf(stderr, "File for preset '%s' not found\n", arg); av_exit(1); }