mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
licenses again
Original commit message from CVS: licenses again
This commit is contained in:
parent
e671bcd2cd
commit
ef8d56344d
2 changed files with 4 additions and 2 deletions
|
@ -39,7 +39,7 @@
|
||||||
static GstElementDetails gst_jack_bin_details = {
|
static GstElementDetails gst_jack_bin_details = {
|
||||||
"Jack Bin",
|
"Jack Bin",
|
||||||
"Generic/Bin",
|
"Generic/Bin",
|
||||||
"LGPL",
|
"GPL",
|
||||||
"Jack processing bin: see README for more info",
|
"Jack processing bin: see README for more info",
|
||||||
VERSION,
|
VERSION,
|
||||||
"Andy Wingo <wingo@pobox.com>",
|
"Andy Wingo <wingo@pobox.com>",
|
||||||
|
@ -49,6 +49,7 @@ static GstElementDetails gst_jack_bin_details = {
|
||||||
static GstElementDetails gst_jack_sink_details = {
|
static GstElementDetails gst_jack_sink_details = {
|
||||||
"Jack Sink",
|
"Jack Sink",
|
||||||
"Sink/Audio",
|
"Sink/Audio",
|
||||||
|
"GPL",
|
||||||
"Output to a Jack processing network: see README for more info",
|
"Output to a Jack processing network: see README for more info",
|
||||||
VERSION,
|
VERSION,
|
||||||
"Andy Wingo <wingo@pobox.com>",
|
"Andy Wingo <wingo@pobox.com>",
|
||||||
|
@ -58,6 +59,7 @@ static GstElementDetails gst_jack_sink_details = {
|
||||||
static GstElementDetails gst_jack_src_details = {
|
static GstElementDetails gst_jack_src_details = {
|
||||||
"Jack Src",
|
"Jack Src",
|
||||||
"Source/Audio",
|
"Source/Audio",
|
||||||
|
"GPL",
|
||||||
"Input from a Jack processing network: see README for more info",
|
"Input from a Jack processing network: see README for more info",
|
||||||
VERSION,
|
VERSION,
|
||||||
"Andy Wingo <wingo@pobox.com>",
|
"Andy Wingo <wingo@pobox.com>",
|
||||||
|
|
|
@ -106,6 +106,7 @@ gst_jack_bin_change_state (GstElement *element)
|
||||||
if (this->client) {
|
if (this->client) {
|
||||||
g_message ("jack: closing client");
|
g_message ("jack: closing client");
|
||||||
jack_client_close (this->client);
|
jack_client_close (this->client);
|
||||||
|
this->client = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
||||||
|
@ -126,7 +127,6 @@ gst_jack_bin_change_state (GstElement *element)
|
||||||
jack_on_shutdown (this->client, shutdown, this);
|
jack_on_shutdown (this->client, shutdown, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* fixme: there are a *lot* of problems here */
|
|
||||||
if (GST_FLAG_IS_SET (GST_OBJECT (this), GST_JACK_OPEN)) {
|
if (GST_FLAG_IS_SET (GST_OBJECT (this), GST_JACK_OPEN)) {
|
||||||
l = this->src_pads;
|
l = this->src_pads;
|
||||||
while (l) {
|
while (l) {
|
||||||
|
|
Loading…
Reference in a new issue