diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-28 13:09:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-28 13:09:29 +0000 |
commit | 4e72f129c3cbd51b452b1676146fb85af089475a (patch) | |
tree | 76e9eedbc298ef6889dd2ccea05227e48833274f /ffmpeg.c | |
parent | 7a8b7634c58099402c0cb434d35fa6b9f1fd9d33 (diff) | |
download | ffmpeg-4e72f129c3cbd51b452b1676146fb85af089475a.tar.gz |
Support loading presets from random paths.
Fixes issue659.
Originally committed as revision 15443 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3740,6 +3740,9 @@ static int opt_preset(const char *opt, const char *arg) f= fopen(tmp, "r"); } } + if(!f && ((arg[0]=='.' && arg[1]=='/') || arg[0]=='/')){ + f= fopen(arg, "r"); + } if(!f){ fprintf(stderr, "Preset file not found\n"); |