mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
opus: set author to myself, and update copyright notices
because as slomo noted, in fact pretty much all the code in there is mine.
This commit is contained in:
parent
39e0bf5260
commit
76ec96a364
7 changed files with 8 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
||||||
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
||||||
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
||||||
* Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) 2011-2012 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
@ -123,7 +124,7 @@ gst_opus_dec_class_init (GstOpusDecClass * klass)
|
||||||
gst_element_class_set_details_simple (element_class, "Opus audio decoder",
|
gst_element_class_set_details_simple (element_class, "Opus audio decoder",
|
||||||
"Codec/Decoder/Audio",
|
"Codec/Decoder/Audio",
|
||||||
"decode opus streams to audio",
|
"decode opus streams to audio",
|
||||||
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
"Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>");
|
||||||
g_object_class_install_property (gobject_class, PROP_USE_INBAND_FEC,
|
g_object_class_install_property (gobject_class, PROP_USE_INBAND_FEC,
|
||||||
g_param_spec_boolean ("use-inband-fec", "Use in-band FEC",
|
g_param_spec_boolean ("use-inband-fec", "Use in-band FEC",
|
||||||
"Use forward error correction if available", DEFAULT_USE_INBAND_FEC,
|
"Use forward error correction if available", DEFAULT_USE_INBAND_FEC,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) <2011-2012> Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -208,7 +208,7 @@ gst_opus_enc_class_init (GstOpusEncClass * klass)
|
||||||
gst_element_class_set_details_simple (gstelement_class, "Opus audio encoder",
|
gst_element_class_set_details_simple (gstelement_class, "Opus audio encoder",
|
||||||
"Codec/Encoder/Audio",
|
"Codec/Encoder/Audio",
|
||||||
"Encodes audio in Opus format",
|
"Encodes audio in Opus format",
|
||||||
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
"Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>");
|
||||||
|
|
||||||
base_class->start = GST_DEBUG_FUNCPTR (gst_opus_enc_start);
|
base_class->start = GST_DEBUG_FUNCPTR (gst_opus_enc_start);
|
||||||
base_class->stop = GST_DEBUG_FUNCPTR (gst_opus_enc_stop);
|
base_class->stop = GST_DEBUG_FUNCPTR (gst_opus_enc_stop);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* GStreamer Opus Encoder
|
/* GStreamer Opus Encoder
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) <2011-2012> Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) <2011-2012> Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
||||||
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
||||||
* Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) 2008 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) <2011-2012> Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* GStreamer
|
/* GStreamer
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
||||||
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
* Copyright (C) <2008> Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
* Copyright (C) <2011-2012> Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|
Loading…
Reference in a new issue