mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 16:48:11 +00:00
fixed licensing on wavenc plugin. Permissions for LGPL gotten from Aaron Holtzman and Stan Seibert.
Original commit message from CVS: fixed licensing on wavenc plugin. Permissions for LGPL gotten from Aaron Holtzman and Stan Seibert.
This commit is contained in:
parent
f6bfbdd222
commit
e3caf4385e
1 changed files with 19 additions and 2 deletions
|
@ -1,5 +1,21 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <2002> Iain Holmes <iain@prettypeople.org>
|
* Copyright (C) <2002> Iain Holmes <iain@prettypeople.org>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Library General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Library General Public
|
||||||
|
* License along with this library; if not, write to the
|
||||||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
* Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -49,7 +65,7 @@ struct wave_header {
|
||||||
static GstElementDetails gst_wavenc_details = {
|
static GstElementDetails gst_wavenc_details = {
|
||||||
"WAV encoder",
|
"WAV encoder",
|
||||||
"Codec/Encoder",
|
"Codec/Encoder",
|
||||||
"GPL",
|
"LGPL",
|
||||||
"Encode raw audio into WAV",
|
"Encode raw audio into WAV",
|
||||||
VERSION,
|
VERSION,
|
||||||
"Iain Holmes <iain@prettypeople.org>",
|
"Iain Holmes <iain@prettypeople.org>",
|
||||||
|
@ -144,6 +160,7 @@ gst_wavenc_class_init (GstWavEncClass *klass)
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
146
|
||||||
gst_wavenc_setup (GstWavEnc *wavenc)
|
gst_wavenc_setup (GstWavEnc *wavenc)
|
||||||
{
|
{
|
||||||
struct wave_header wave;
|
struct wave_header wave;
|
||||||
|
@ -187,7 +204,7 @@ gst_wavenc_setup (GstWavEnc *wavenc)
|
||||||
wavenc->setup = TRUE;
|
wavenc->setup = TRUE;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
190
|
||||||
static GstPadConnectReturn
|
static GstPadConnectReturn
|
||||||
gst_wavenc_sinkconnect (GstPad *pad,
|
gst_wavenc_sinkconnect (GstPad *pad,
|
||||||
GstCaps *caps)
|
GstCaps *caps)
|
||||||
|
|
Loading…
Reference in a new issue