mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
tools: remove SIGUSR* handling from gst-launch
Remove SIGUSR* handling from gst-launch, since it might interfere with other things (e.g. libleaks), and should be done differently anyway (either via support for simple timed-commands scripting or remote control via DBus or so).
This commit is contained in:
parent
510ee7be34
commit
0bf43651a9
2 changed files with 0 additions and 45 deletions
|
@ -54,9 +54,6 @@ Save XML representation of pipeline to FILE and exit (DEPRECATED, DO NOT USE)
|
||||||
.B \-f, \-\-no\-fault
|
.B \-f, \-\-no\-fault
|
||||||
Do not install a fault handler
|
Do not install a fault handler
|
||||||
.TP 8
|
.TP 8
|
||||||
.B \-\-no\-sigusr-handler
|
|
||||||
Do not install signal handlers for SIGUSR1 (play) and SIGUSR2 (stop)
|
|
||||||
.TP 8
|
|
||||||
.B \-T, \-\-trace
|
.B \-T, \-\-trace
|
||||||
Print memory allocation traces. The feature must be enabled at compile time to
|
Print memory allocation traces. The feature must be enabled at compile time to
|
||||||
work.
|
work.
|
||||||
|
@ -209,15 +206,6 @@ Ranges are in this format: [ VALUE, VALUE ]
|
||||||
.br
|
.br
|
||||||
Lists use this format: ( VALUE \fI[, VALUE ...]\fR )
|
Lists use this format: ( VALUE \fI[, VALUE ...]\fR )
|
||||||
|
|
||||||
.SH "PIPELINE CONTROL"
|
|
||||||
|
|
||||||
A pipeline can be controlled by signals. SIGUSR2 will stop the pipeline
|
|
||||||
(GST_STATE_NULL); SIGUSR1 will put it back to play (GST_STATE_PLAYING).
|
|
||||||
By default, the pipeline will start in the playing state.
|
|
||||||
.br
|
|
||||||
There are currently no signals defined to go into the ready or pause
|
|
||||||
(GST_STATE_READY and GST_STATE_PAUSED) state explicitely.
|
|
||||||
|
|
||||||
.SH "PIPELINE EXAMPLES"
|
.SH "PIPELINE EXAMPLES"
|
||||||
|
|
||||||
The examples below assume that you have the correct plug-ins available.
|
The examples below assume that you have the correct plug-ins available.
|
||||||
|
|
|
@ -498,33 +498,6 @@ sigint_restore (void)
|
||||||
|
|
||||||
sigaction (SIGINT, &action, NULL);
|
sigaction (SIGINT, &action, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME 0.11: remove SIGUSR handling (also from man page) */
|
|
||||||
static void
|
|
||||||
play_handler (int signum)
|
|
||||||
{
|
|
||||||
switch (signum) {
|
|
||||||
case SIGUSR1:
|
|
||||||
PRINT ("Caught SIGUSR1 - Play request.\n");
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
||||||
break;
|
|
||||||
case SIGUSR2:
|
|
||||||
PRINT ("Caught SIGUSR2 - Stop request.\n");
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
play_signal_setup (void)
|
|
||||||
{
|
|
||||||
struct sigaction action;
|
|
||||||
|
|
||||||
memset (&action, 0, sizeof (action));
|
|
||||||
action.sa_handler = play_handler;
|
|
||||||
sigaction (SIGUSR1, &action, NULL);
|
|
||||||
sigaction (SIGUSR2, &action, NULL);
|
|
||||||
}
|
|
||||||
#endif /* DISABLE_FAULT_HANDLER */
|
#endif /* DISABLE_FAULT_HANDLER */
|
||||||
|
|
||||||
/* returns ELR_ERROR if there was an error
|
/* returns ELR_ERROR if there was an error
|
||||||
|
@ -847,7 +820,6 @@ main (int argc, char *argv[])
|
||||||
/* options */
|
/* options */
|
||||||
gboolean verbose = FALSE;
|
gboolean verbose = FALSE;
|
||||||
gboolean no_fault = FALSE;
|
gboolean no_fault = FALSE;
|
||||||
gboolean no_sigusr_handler = FALSE;
|
|
||||||
gboolean trace = FALSE;
|
gboolean trace = FALSE;
|
||||||
gboolean eos_on_shutdown = FALSE;
|
gboolean eos_on_shutdown = FALSE;
|
||||||
gboolean check_index = FALSE;
|
gboolean check_index = FALSE;
|
||||||
|
@ -867,8 +839,6 @@ main (int argc, char *argv[])
|
||||||
N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
|
N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
|
||||||
{"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
|
{"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
|
||||||
N_("Do not install a fault handler"), NULL},
|
N_("Do not install a fault handler"), NULL},
|
||||||
{"no-sigusr-handler", '\0', 0, G_OPTION_ARG_NONE, &no_sigusr_handler,
|
|
||||||
N_("Do not install signal handlers for SIGUSR1 and SIGUSR2"), NULL},
|
|
||||||
{"trace", 'T', 0, G_OPTION_ARG_NONE, &trace,
|
{"trace", 'T', 0, G_OPTION_ARG_NONE, &trace,
|
||||||
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
N_("Print alloc trace (if enabled at compile time)"), NULL},
|
||||||
{"eos-on-shutdown", 'e', 0, G_OPTION_ARG_NONE, &eos_on_shutdown,
|
{"eos-on-shutdown", 'e', 0, G_OPTION_ARG_NONE, &eos_on_shutdown,
|
||||||
|
@ -922,9 +892,6 @@ main (int argc, char *argv[])
|
||||||
fault_setup ();
|
fault_setup ();
|
||||||
|
|
||||||
sigint_setup ();
|
sigint_setup ();
|
||||||
|
|
||||||
if (!no_sigusr_handler)
|
|
||||||
play_signal_setup ();
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (trace) {
|
if (trace) {
|
||||||
|
|
Loading…
Reference in a new issue