blob: 6660c95100a7dcd352a9a7fb57d1399aae82d15f [file] [log] [blame]
Alessandro Decinab1029d72011-08-21 11:00:51 +02001/* GStreamer
2 * Copyright (C) 2011 Alessandro Decina <alessandro.d@gmail.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
Tim-Philipp Müller9e1b75f2012-11-03 20:38:00 +000016 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
Alessandro Decinab1029d72011-08-21 11:00:51 +020018 */
19#ifndef _GST_HLS_SINK_H_
20#define _GST_HLS_SINK_H_
21
22#include "gstm3u8playlist.h"
23#include <gst/gst.h>
24
25G_BEGIN_DECLS
26
27#define GST_TYPE_HLS_SINK (gst_hls_sink_get_type())
28#define GST_HLS_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_HLS_SINK,GstHlsSink))
29#define GST_HLS_SINK_CAST(obj) ((GstHlsSink *) obj)
30#define GST_HLS_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_HLS_SINK,GstHlsSinkClass))
31#define GST_IS_HLS_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_HLS_SINK))
32#define GST_IS_HLS_SINK_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_HLS_SINK))
33
34typedef struct _GstHlsSink GstHlsSink;
35typedef struct _GstHlsSinkClass GstHlsSinkClass;
36
37struct _GstHlsSink
38{
39 GstBin bin;
40
41 GstPad *ghostpad;
42 GstElement *multifilesink;
43 gboolean elements_created;
44 GstEvent *force_key_unit_event;
45
Alessandro Decinab1029d72011-08-21 11:00:51 +020046 gchar *location;
47 gchar *playlist_location;
48 gchar *playlist_root;
Will Thompsonb4bf05b2012-09-28 12:36:55 -040049 guint playlist_length;
Alessandro Decinab1029d72011-08-21 11:00:51 +020050 GstM3U8Playlist *playlist;
51 guint index;
52 gint max_files;
Robert Swain9d003f42012-09-07 16:07:40 +020053 gint target_duration;
Alessandro Decina8cc14002012-10-28 21:29:31 +010054 GstSegment segment;
55 gboolean waiting_fku;
56 GstClockTime last_running_time;
Alessandro Decinab1029d72011-08-21 11:00:51 +020057};
58
59struct _GstHlsSinkClass
60{
61 GstBinClass bin_class;
62};
63
64GType gst_hls_sink_get_type (void);
65gboolean gst_hls_sink_plugin_init (GstPlugin * plugin);
66
67G_END_DECLS
68
69#endif