Commit f8dc2e51 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

ffmpeg: fix passlogfile regression

parent 9a5f61ac
......@@ -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[] = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment