2011-02-14 17:51:32 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2010 Marc-Andre Lureau <marcandre.lureau@gmail.com>
|
|
|
|
* Copyright (C) 2010 Andoni Morales Alastruey <ylatuya@gmail.com>
|
2015-12-05 11:12:33 +00:00
|
|
|
* Copyright (C) 2015 Tim-Philipp Müller <tim@centricular.com>
|
2011-02-14 17:51:32 +00:00
|
|
|
*
|
|
|
|
* gsthlsdemux.h:
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2011-02-14 17:51:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_HLS_DEMUX_H__
|
|
|
|
#define __GST_HLS_DEMUX_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "m3u8.h"
|
2014-08-27 19:26:19 +00:00
|
|
|
#include <gst/adaptivedemux/gstadaptivedemux.h>
|
2014-08-22 21:18:59 +00:00
|
|
|
#if defined(HAVE_OPENSSL)
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#elif defined(HAVE_NETTLE)
|
2014-04-08 20:31:32 +00:00
|
|
|
#include <nettle/aes.h>
|
|
|
|
#include <nettle/cbc.h>
|
2019-04-09 11:07:05 +00:00
|
|
|
#elif defined(HAVE_LIBGCRYPT)
|
2014-04-08 20:31:32 +00:00
|
|
|
#include <gcrypt.h>
|
|
|
|
#endif
|
2011-02-14 17:51:32 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2016-07-13 13:02:10 +00:00
|
|
|
|
2011-02-14 17:51:32 +00:00
|
|
|
#define GST_TYPE_HLS_DEMUX \
|
|
|
|
(gst_hls_demux_get_type())
|
|
|
|
#define GST_HLS_DEMUX(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_HLS_DEMUX,GstHLSDemux))
|
|
|
|
#define GST_HLS_DEMUX_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_HLS_DEMUX,GstHLSDemuxClass))
|
|
|
|
#define GST_IS_HLS_DEMUX(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_HLS_DEMUX))
|
|
|
|
#define GST_IS_HLS_DEMUX_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_HLS_DEMUX))
|
2012-04-12 12:17:14 +00:00
|
|
|
#define GST_HLS_DEMUX_GET_CLASS(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_HLS_DEMUX,GstHLSDemuxClass))
|
2014-04-29 18:19:51 +00:00
|
|
|
#define GST_HLS_DEMUX_CAST(obj) \
|
|
|
|
((GstHLSDemux *)obj)
|
2016-07-13 13:02:10 +00:00
|
|
|
|
2011-02-14 17:51:32 +00:00
|
|
|
typedef struct _GstHLSDemux GstHLSDemux;
|
|
|
|
typedef struct _GstHLSDemuxClass GstHLSDemuxClass;
|
2016-07-13 13:02:10 +00:00
|
|
|
typedef struct _GstHLSDemuxStream GstHLSDemuxStream;
|
2016-02-24 05:57:16 +00:00
|
|
|
typedef struct _GstHLSTSReader GstHLSTSReader;
|
2016-07-13 13:02:10 +00:00
|
|
|
|
|
|
|
#define GST_HLS_DEMUX_STREAM_CAST(stream) ((GstHLSDemuxStream *)(stream))
|
|
|
|
|
2016-07-12 13:05:55 +00:00
|
|
|
typedef enum {
|
|
|
|
GST_HLS_TSREADER_NONE,
|
|
|
|
GST_HLS_TSREADER_MPEGTS,
|
|
|
|
GST_HLS_TSREADER_ID3
|
|
|
|
} GstHLSTSReaderType;
|
|
|
|
|
2016-02-24 05:57:16 +00:00
|
|
|
struct _GstHLSTSReader
|
|
|
|
{
|
2016-07-12 13:05:55 +00:00
|
|
|
GstHLSTSReaderType rtype;
|
|
|
|
gboolean have_id3;
|
|
|
|
|
2016-02-24 05:57:16 +00:00
|
|
|
gint packet_size;
|
|
|
|
gint pmt_pid;
|
|
|
|
gint pcr_pid;
|
|
|
|
|
|
|
|
GstClockTime last_pcr;
|
|
|
|
GstClockTime first_pcr;
|
|
|
|
};
|
|
|
|
|
2016-07-13 13:02:10 +00:00
|
|
|
struct _GstHLSDemuxStream
|
|
|
|
{
|
2016-10-10 14:52:58 +00:00
|
|
|
GstAdaptiveDemuxStream adaptive_demux_stream;
|
2016-07-13 13:02:10 +00:00
|
|
|
|
2016-07-12 13:05:55 +00:00
|
|
|
GstHLSTSReaderType stream_type;
|
|
|
|
|
2016-02-24 14:58:25 +00:00
|
|
|
GstM3U8 *playlist;
|
2016-03-04 16:08:55 +00:00
|
|
|
gboolean is_primary_playlist;
|
2016-02-24 14:58:25 +00:00
|
|
|
|
2016-07-13 13:02:10 +00:00
|
|
|
gboolean do_typefind; /* Whether we need to typefind the next buffer */
|
|
|
|
GstBuffer *pending_typefind_buffer; /* for collecting data until typefind succeeds */
|
|
|
|
|
|
|
|
GstAdapter *pending_encrypted_data; /* for chunking data into 16 byte multiples for decryption */
|
|
|
|
GstBuffer *pending_decrypted_buffer; /* last decrypted buffer for pkcs7 unpadding.
|
|
|
|
We only know that it is the last at EOS */
|
|
|
|
guint64 current_offset; /* offset we're currently at */
|
|
|
|
gboolean reset_pts;
|
2016-07-13 13:02:10 +00:00
|
|
|
|
|
|
|
/* decryption tooling */
|
|
|
|
#if defined(HAVE_OPENSSL)
|
2017-09-05 12:07:03 +00:00
|
|
|
# if OPENSSL_VERSION_NUMBER < 0x10100000L
|
2016-07-13 13:02:10 +00:00
|
|
|
EVP_CIPHER_CTX aes_ctx;
|
2017-09-05 12:07:03 +00:00
|
|
|
# else
|
|
|
|
EVP_CIPHER_CTX *aes_ctx;
|
|
|
|
# endif
|
2016-07-13 13:02:10 +00:00
|
|
|
#elif defined(HAVE_NETTLE)
|
2019-11-06 14:07:44 +00:00
|
|
|
struct CBC_CTX (struct aes128_ctx, AES_BLOCK_SIZE) aes_ctx;
|
2019-04-09 11:07:05 +00:00
|
|
|
#elif defined(HAVE_LIBGCRYPT)
|
2016-07-13 13:02:10 +00:00
|
|
|
gcry_cipher_hd_t aes_ctx;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
gchar *current_key;
|
|
|
|
guint8 *current_iv;
|
|
|
|
|
2016-02-24 05:57:16 +00:00
|
|
|
/* Accumulator for reading PAT/PMT/PCR from
|
|
|
|
* the stream so we can set timestamps/segments
|
|
|
|
* and switch cleanly */
|
|
|
|
GstBuffer *pending_pcr_buffer;
|
|
|
|
|
|
|
|
GstHLSTSReader tsreader;
|
2016-07-13 13:02:10 +00:00
|
|
|
};
|
2011-02-14 17:51:32 +00:00
|
|
|
|
2016-07-13 13:02:10 +00:00
|
|
|
typedef struct {
|
|
|
|
guint8 data[16];
|
|
|
|
} GstHLSKey;
|
|
|
|
|
2011-02-14 17:51:32 +00:00
|
|
|
/**
|
|
|
|
* GstHLSDemux:
|
|
|
|
*
|
|
|
|
* Opaque #GstHLSDemux data structure.
|
|
|
|
*/
|
|
|
|
struct _GstHLSDemux
|
|
|
|
{
|
2014-08-27 19:26:19 +00:00
|
|
|
GstAdaptiveDemux parent;
|
2011-02-14 17:51:32 +00:00
|
|
|
|
2014-02-12 17:27:21 +00:00
|
|
|
gint srcpad_counter;
|
2012-03-15 18:42:44 +00:00
|
|
|
|
2016-07-13 13:02:10 +00:00
|
|
|
/* Decryption key cache: url => GstHLSKey */
|
|
|
|
GHashTable *keys;
|
|
|
|
GMutex keys_lock;
|
2015-11-27 19:26:02 +00:00
|
|
|
|
2022-05-02 17:13:41 +00:00
|
|
|
GstDateTime *prog_dt;
|
|
|
|
|
2015-11-27 19:26:02 +00:00
|
|
|
/* FIXME: check locking, protected automatically by manifest_lock already? */
|
2015-12-05 11:12:33 +00:00
|
|
|
/* The master playlist with the available variant streams */
|
|
|
|
GstHLSMasterPlaylist *master;
|
|
|
|
|
|
|
|
GstHLSVariantStream *current_variant;
|
2020-11-03 16:48:02 +00:00
|
|
|
/* The previous variant, used to transition streams over */
|
|
|
|
GstHLSVariantStream *previous_variant;
|
|
|
|
|
|
|
|
gboolean streams_aware;
|
2011-02-14 17:51:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstHLSDemuxClass
|
|
|
|
{
|
2014-08-27 19:26:19 +00:00
|
|
|
GstAdaptiveDemuxClass parent_class;
|
2011-02-14 17:51:32 +00:00
|
|
|
};
|
|
|
|
|
2016-07-12 13:05:55 +00:00
|
|
|
|
2016-02-24 05:57:16 +00:00
|
|
|
void gst_hlsdemux_tsreader_init (GstHLSTSReader *r);
|
2016-07-12 13:05:55 +00:00
|
|
|
void gst_hlsdemux_tsreader_set_type (GstHLSTSReader *r, GstHLSTSReaderType rtype);
|
|
|
|
|
2016-12-19 09:40:28 +00:00
|
|
|
gboolean gst_hlsdemux_tsreader_find_pcrs (GstHLSTSReader *r, GstBuffer **buffer,
|
|
|
|
GstClockTime *first_pcr, GstClockTime *last_pcr, GstTagList **tags);
|
2016-02-24 05:57:16 +00:00
|
|
|
|
2011-02-14 17:51:32 +00:00
|
|
|
GType gst_hls_demux_get_type (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_HLS_DEMUX_H__ */
|