hlsdemux: Publish all media for alternate renditions.
[platform/upstream/gstreamer.git] / ext / hls / gsthlsdemux.h
1 /* GStreamer
2  * Copyright (C) 2010 Marc-Andre Lureau <marcandre.lureau@gmail.com>
3  * Copyright (C) 2010 Andoni Morales Alastruey <ylatuya@gmail.com>
4  * Copyright (C) 2015 Tim-Philipp Müller <tim@centricular.com>
5  *
6  * gsthlsdemux.h:
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24
25 #ifndef __GST_HLS_DEMUX_H__
26 #define __GST_HLS_DEMUX_H__
27
28 #include <gst/gst.h>
29 #include "m3u8.h"
30 #include "gsthls.h"
31 #include <gst/adaptivedemux/gstadaptivedemux.h>
32 #if defined(HAVE_OPENSSL)
33 #include <openssl/evp.h>
34 #elif defined(HAVE_NETTLE)
35 #include <nettle/aes.h>
36 #include <nettle/cbc.h>
37 #else
38 #include <gcrypt.h>
39 #endif
40
41 G_BEGIN_DECLS
42
43 #define GST_TYPE_HLS_DEMUX \
44   (gst_hls_demux_get_type())
45 #define GST_HLS_DEMUX(obj) \
46   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_HLS_DEMUX,GstHLSDemux))
47 #define GST_HLS_DEMUX_CLASS(klass) \
48   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_HLS_DEMUX,GstHLSDemuxClass))
49 #define GST_IS_HLS_DEMUX(obj) \
50   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_HLS_DEMUX))
51 #define GST_IS_HLS_DEMUX_CLASS(klass) \
52   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_HLS_DEMUX))
53 #define GST_HLS_DEMUX_GET_CLASS(obj) \
54   (G_TYPE_INSTANCE_GET_CLASS ((obj),GST_TYPE_HLS_DEMUX,GstHLSDemuxClass))
55 #define GST_HLS_DEMUX_CAST(obj) \
56   ((GstHLSDemux *)obj)
57
58 typedef struct _GstHLSDemux GstHLSDemux;
59 typedef struct _GstHLSDemuxClass GstHLSDemuxClass;
60 typedef struct _GstHLSDemuxStream GstHLSDemuxStream;
61
62 #define GST_HLS_DEMUX_STREAM_CAST(stream) ((GstHLSDemuxStream *)(stream))
63
64 struct _GstHLSDemuxStream
65 {
66   GstAdaptiveDemux adaptive_demux_stream;
67
68   GstM3U8 *playlist;
69
70   gboolean do_typefind;         /* Whether we need to typefind the next buffer */
71   GstBuffer *pending_typefind_buffer; /* for collecting data until typefind succeeds */
72
73   GstAdapter *pending_encrypted_data;  /* for chunking data into 16 byte multiples for decryption */
74   GstBuffer *pending_decrypted_buffer; /* last decrypted buffer for pkcs7 unpadding.
75                                           We only know that it is the last at EOS */
76   guint64 current_offset;              /* offset we're currently at */
77   gboolean reset_pts;
78
79   /* decryption tooling */
80 #if defined(HAVE_OPENSSL)
81   EVP_CIPHER_CTX aes_ctx;
82 #elif defined(HAVE_NETTLE)
83   struct CBC_CTX (struct aes_ctx, AES_BLOCK_SIZE) aes_ctx;
84 #else
85   gcry_cipher_hd_t aes_ctx;
86 #endif
87
88   gchar     *current_key;
89   guint8    *current_iv;
90
91   GstBuffer *pending_buffer; /* decryption scenario:
92                               * the last buffer can only be pushed when
93                               * resized, so need to store and wait for
94                               * EOS to know it is the last */
95 };
96
97 typedef struct {
98   guint8 data[16];
99 } GstHLSKey;
100
101 /**
102  * GstHLSDemux:
103  *
104  * Opaque #GstHLSDemux data structure.
105  */
106 struct _GstHLSDemux
107 {
108   GstAdaptiveDemux parent;
109
110   gint srcpad_counter;
111
112   /* Decryption key cache: url => GstHLSKey */
113   GHashTable *keys;
114   GMutex      keys_lock;
115
116   /* FIXME: check locking, protected automatically by manifest_lock already? */
117   /* The master playlist with the available variant streams */
118   GstHLSMasterPlaylist *master;
119
120   GstHLSVariantStream  *current_variant;
121 };
122
123 struct _GstHLSDemuxClass
124 {
125   GstAdaptiveDemuxClass parent_class;
126 };
127
128 GType gst_hls_demux_get_type (void);
129
130 G_END_DECLS
131 #endif /* __GST_HLS_DEMUX_H__ */