mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
00bf61a0db
The original code (old mpegtsparse) from which this plugin was based on was dual-licensed. This allowed usage of the code under any of the licenses (which including LGPL): """ * Alternatively, the contents of this file may be used under the terms of * the GNU Lesser General Public License Version 2 or later (the "LGPL"), * in which case the provisions of the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of the MPL or the LGPL. """ When refactored (leading to the creation of this new plugin), I chose all new code to be LGPL-only (which was allowed for pre-existing code) by removing the MPL sections. The headers were all updated, but not the plugin license field. This commit fixes this.
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/*
|
|
*
|
|
* 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., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <gst/mpegts/mpegts.h>
|
|
#include "mpegtsbase.h"
|
|
#include "mpegtspacketizer.h"
|
|
#include "mpegtsparse.h"
|
|
#include "tsdemux.h"
|
|
|
|
|
|
static gboolean
|
|
plugin_init (GstPlugin * plugin)
|
|
{
|
|
gst_mpegts_initialize ();
|
|
if (!gst_mpegtsbase_plugin_init (plugin))
|
|
return FALSE;
|
|
if (!gst_mpegtsparse_plugin_init (plugin))
|
|
return FALSE;
|
|
if (!gst_ts_demux_plugin_init (plugin))
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
mpegtsdemux,
|
|
"MPEG TS demuxer",
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|