diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-10-18 18:18:52 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-10-18 18:18:52 +0000 |
commit | 9ac1c884a00674b9cbceef8f5685ccd6a7cca9b0 (patch) | |
tree | 564ccbd34df9d19a6f570b2845181b097e125e12 /ffmpeg.c | |
parent | 4589dc5c4d1d84e34da6e2318358e33396d6c326 (diff) | |
download | ffmpeg-9ac1c884a00674b9cbceef8f5685ccd6a7cca9b0.tar.gz |
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
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |