mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 08:12:44 +00:00
Add -timelimit option
This option limits the CPU time used by ffmpeg to the number of seconds specified. After this time, the OS sends a SIGXCPU signal, which we handle and attempt to exit cleanly. If the process is stuck, the OS will deliver a SIGKILL one second later, forcibly terminating the process. This functionality is useful in automated setups where a runaway ffmpeg process would otherwise go undetected. Originally committed as revision 21347 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5e7dfb7de1
commit
ffcc6e24f5
16
cmdutils.c
16
cmdutils.c
@ -41,6 +41,9 @@
|
|||||||
#if CONFIG_NETWORK
|
#if CONFIG_NETWORK
|
||||||
#include "libavformat/network.h"
|
#include "libavformat/network.h"
|
||||||
#endif
|
#endif
|
||||||
|
#if HAVE_SYS_RESOURCE_H
|
||||||
|
#include <sys/resource.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef exit
|
#undef exit
|
||||||
|
|
||||||
@ -257,6 +260,19 @@ int opt_loglevel(const char *opt, const char *arg)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int opt_timelimit(const char *opt, const char *arg)
|
||||||
|
{
|
||||||
|
#if HAVE_SYS_RESOURCE_H
|
||||||
|
int lim = parse_number_or_die(opt, arg, OPT_INT64, 0, INT_MAX);
|
||||||
|
struct rlimit rl = { lim, lim + 1 };
|
||||||
|
if (setrlimit(RLIMIT_CPU, &rl))
|
||||||
|
perror("setrlimit");
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "Warning: -%s not implemented on this OS\n", opt);
|
||||||
|
#endif
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void set_context_opts(void *ctx, void *opts_ctx, int flags)
|
void set_context_opts(void *ctx, void *opts_ctx, int flags)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -55,6 +55,11 @@ int opt_default(const char *opt, const char *arg);
|
|||||||
*/
|
*/
|
||||||
int opt_loglevel(const char *opt, const char *arg);
|
int opt_loglevel(const char *opt, const char *arg);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Limit the execution time.
|
||||||
|
*/
|
||||||
|
int opt_timelimit(const char *opt, const char *arg);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parses a string and returns its corresponding value as a double.
|
* Parses a string and returns its corresponding value as a double.
|
||||||
* Exits from the application if the string cannot be correctly
|
* Exits from the application if the string cannot be correctly
|
||||||
|
5
ffmpeg.c
5
ffmpeg.c
@ -353,6 +353,10 @@ static void term_init(void)
|
|||||||
|
|
||||||
signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
|
signal(SIGINT , sigterm_handler); /* Interrupt (ANSI). */
|
||||||
signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
|
signal(SIGTERM, sigterm_handler); /* Termination (ANSI). */
|
||||||
|
#ifdef SIGXCPU
|
||||||
|
signal(SIGXCPU, sigterm_handler);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
register a function to be called at normal program termination
|
register a function to be called at normal program termination
|
||||||
*/
|
*/
|
||||||
@ -3863,6 +3867,7 @@ static const OptionDef options[] = {
|
|||||||
{ "dframes", OPT_INT | HAS_ARG, {(void*)&max_frames[CODEC_TYPE_DATA]}, "set the number of data frames to record", "number" },
|
{ "dframes", OPT_INT | HAS_ARG, {(void*)&max_frames[CODEC_TYPE_DATA]}, "set the number of data frames to record", "number" },
|
||||||
{ "benchmark", OPT_BOOL | OPT_EXPERT, {(void*)&do_benchmark},
|
{ "benchmark", OPT_BOOL | OPT_EXPERT, {(void*)&do_benchmark},
|
||||||
"add timings for benchmarking" },
|
"add timings for benchmarking" },
|
||||||
|
{ "timelimit", OPT_FUNC2 | HAS_ARG, {(void*)opt_timelimit}, "set max runtime in seconds", "limit" },
|
||||||
{ "dump", OPT_BOOL | OPT_EXPERT, {(void*)&do_pkt_dump},
|
{ "dump", OPT_BOOL | OPT_EXPERT, {(void*)&do_pkt_dump},
|
||||||
"dump each input packet" },
|
"dump each input packet" },
|
||||||
{ "hex", OPT_BOOL | OPT_EXPERT, {(void*)&do_hex_dump},
|
{ "hex", OPT_BOOL | OPT_EXPERT, {(void*)&do_hex_dump},
|
||||||
|
Loading…
Reference in New Issue
Block a user