838e6085674facb86065a532973a7870faaf1fcb
[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   gboolean do_typefind;         /* Whether we need to typefind the next buffer */
69   GstBuffer *pending_typefind_buffer; /* for collecting data until typefind succeeds */
70
71   GstAdapter *pending_encrypted_data;  /* for chunking data into 16 byte multiples for decryption */
72   GstBuffer *pending_decrypted_buffer; /* last decrypted buffer for pkcs7 unpadding.
73                                           We only know that it is the last at EOS */
74   guint64 current_offset;              /* offset we're currently at */
75   gboolean reset_pts;
76
77   /* decryption tooling */
78 #if defined(HAVE_OPENSSL)
79   EVP_CIPHER_CTX aes_ctx;
80 #elif defined(HAVE_NETTLE)
81   struct CBC_CTX (struct aes_ctx, AES_BLOCK_SIZE) aes_ctx;
82 #else
83   gcry_cipher_hd_t aes_ctx;
84 #endif
85
86   gchar     *current_key;
87   guint8    *current_iv;
88
89   GstBuffer *pending_buffer; /* decryption scenario:
90                               * the last buffer can only be pushed when
91                               * resized, so need to store and wait for
92                               * EOS to know it is the last */
93 };
94
95 typedef struct {
96   guint8 data[16];
97 } GstHLSKey;
98
99 /**
100  * GstHLSDemux:
101  *
102  * Opaque #GstHLSDemux data structure.
103  */
104 struct _GstHLSDemux
105 {
106   GstAdaptiveDemux parent;
107
108   gint srcpad_counter;
109
110   /* Decryption key cache: url => GstHLSKey */
111   GHashTable *keys;
112   GMutex      keys_lock;
113
114   /* FIXME: check locking, protected automatically by manifest_lock already? */
115   /* The master playlist with the available variant streams */
116   GstHLSMasterPlaylist *master;
117
118   GstHLSVariantStream  *current_variant;
119 };
120
121 struct _GstHLSDemuxClass
122 {
123   GstAdaptiveDemuxClass parent_class;
124 };
125
126 GType gst_hls_demux_get_type (void);
127
128 G_END_DECLS
129 #endif /* __GST_HLS_DEMUX_H__ */