diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-09 01:05:28 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-08-09 01:11:37 +0200 |
commit | f8dc2e51aa43eb5fcb97b1def6ca421420d5443e (patch) | |
tree | 57d8873904805a09d89774a4a687072da00993ff | |
parent | 9a5f61ac62ab1a191f0ea81caef1e386a4c1e242 (diff) | |
download | ffmpeg-f8dc2e51aa43eb5fcb97b1def6ca421420d5443e.tar.gz |
ffmpeg: fix passlogfile regression
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4378,7 +4378,11 @@ static void log_callback_null(void* ptr, int level, const char* fmt, va_list vl) static int opt_passlogfile(const char *opt, const char *arg) { pass_logfilename_prefix = arg; +#if CONFIG_LIBX264_ENCODER return opt_default("passlogfile", arg); +#else + return 0; +#endif } static const OptionDef options[] = { |