mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Make ffmpeg print in the error message the exact line of a preset file
containing an invalid option or value, and also how the option and the value have been parsed. Originally committed as revision 15903 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b04665ac02
commit
e178d7fd0f
2
ffmpeg.c
2
ffmpeg.c
@ -3714,7 +3714,7 @@ static int opt_preset(const char *opt, const char *arg)
|
||||
}else if(!strcmp(tmp, "scodec")){
|
||||
opt_subtitle_codec(tmp2);
|
||||
}else if(opt_default(tmp, tmp2) < 0){
|
||||
fprintf(stderr, "%s: Invalid option or argument: %s=%s\n", filename, tmp, tmp2);
|
||||
fprintf(stderr, "%s: Invalid option or argument: '%s', parsed as '%s' = '%s'\n", filename, line, tmp, tmp2);
|
||||
av_exit(1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user