2013-06-23 06:41:12 +00:00
|
|
|
/*
|
|
|
|
* mpegts.h -
|
|
|
|
* Copyright (C) 2013 Edward Hervey
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Edward Hervey <edward@collabora.com>
|
|
|
|
*
|
2014-10-07 10:12:04 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
2013-06-23 06:41:12 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GST_MPEGTS_H_
|
|
|
|
#define _GST_MPEGTS_H_
|
|
|
|
|
2013-08-28 10:13:14 +00:00
|
|
|
#ifndef GST_USE_UNSTABLE_API
|
|
|
|
#warning "The GStreamer mpegts library is unstable API and may change in future."
|
|
|
|
#warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
|
|
|
|
#endif
|
|
|
|
|
2018-03-13 12:47:03 +00:00
|
|
|
#include <gst/mpegts/mpegts-prelude.h>
|
2013-06-23 06:41:12 +00:00
|
|
|
#include <gst/mpegts/gstmpegtsdescriptor.h>
|
2020-12-14 09:50:02 +00:00
|
|
|
#include <gst/mpegts/gst-atsc-descriptor.h>
|
2013-07-03 16:52:18 +00:00
|
|
|
#include <gst/mpegts/gst-dvb-descriptor.h>
|
2020-12-14 09:50:02 +00:00
|
|
|
#include <gst/mpegts/gst-isdb-descriptor.h>
|
2013-06-23 06:41:12 +00:00
|
|
|
#include <gst/mpegts/gstmpegtssection.h>
|
2013-07-03 15:59:02 +00:00
|
|
|
#include <gst/mpegts/gst-atsc-section.h>
|
|
|
|
#include <gst/mpegts/gst-dvb-section.h>
|
2013-09-27 14:45:00 +00:00
|
|
|
#include <gst/mpegts/gst-scte-section.h>
|
2013-06-23 06:41:12 +00:00
|
|
|
#include <gst/mpegts/gstmpegts-enumtypes.h>
|
2020-12-14 09:50:02 +00:00
|
|
|
#include <gst/mpegts/gst-hdmv-section.h>
|
2013-06-23 06:41:12 +00:00
|
|
|
|
2014-01-06 15:01:22 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-03-13 12:47:03 +00:00
|
|
|
GST_MPEGTS_API
|
2013-06-23 06:41:12 +00:00
|
|
|
void gst_mpegts_initialize (void);
|
|
|
|
|
2014-01-06 15:01:22 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2013-06-23 06:41:12 +00:00
|
|
|
#endif
|