Alessandro Decina | b1029d7 | 2011-08-21 11:00:51 +0200 | [diff] [blame] | 1 | /* 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üller | 9e1b75f | 2012-11-03 20:38:00 +0000 | [diff] [blame] | 16 | * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, |
| 17 | * Boston, MA 02110-1301, USA. |
Alessandro Decina | b1029d7 | 2011-08-21 11:00:51 +0200 | [diff] [blame] | 18 | */ |
| 19 | #ifndef _GST_HLS_SINK_H_ |
| 20 | #define _GST_HLS_SINK_H_ |
| 21 | |
| 22 | #include "gstm3u8playlist.h" |
| 23 | #include <gst/gst.h> |
| 24 | |
| 25 | G_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 | |
| 34 | typedef struct _GstHlsSink GstHlsSink; |
| 35 | typedef struct _GstHlsSinkClass GstHlsSinkClass; |
| 36 | |
| 37 | struct _GstHlsSink |
| 38 | { |
| 39 | GstBin bin; |
| 40 | |
| 41 | GstPad *ghostpad; |
| 42 | GstElement *multifilesink; |
| 43 | gboolean elements_created; |
| 44 | GstEvent *force_key_unit_event; |
| 45 | |
Alessandro Decina | b1029d7 | 2011-08-21 11:00:51 +0200 | [diff] [blame] | 46 | gchar *location; |
| 47 | gchar *playlist_location; |
| 48 | gchar *playlist_root; |
Will Thompson | b4bf05b | 2012-09-28 12:36:55 -0400 | [diff] [blame] | 49 | guint playlist_length; |
Alessandro Decina | b1029d7 | 2011-08-21 11:00:51 +0200 | [diff] [blame] | 50 | GstM3U8Playlist *playlist; |
| 51 | guint index; |
| 52 | gint max_files; |
Robert Swain | 9d003f4 | 2012-09-07 16:07:40 +0200 | [diff] [blame] | 53 | gint target_duration; |
Alessandro Decina | 8cc1400 | 2012-10-28 21:29:31 +0100 | [diff] [blame] | 54 | GstSegment segment; |
| 55 | gboolean waiting_fku; |
| 56 | GstClockTime last_running_time; |
Alessandro Decina | b1029d7 | 2011-08-21 11:00:51 +0200 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | struct _GstHlsSinkClass |
| 60 | { |
| 61 | GstBinClass bin_class; |
| 62 | }; |
| 63 | |
| 64 | GType gst_hls_sink_get_type (void); |
| 65 | gboolean gst_hls_sink_plugin_init (GstPlugin * plugin); |
| 66 | |
| 67 | G_END_DECLS |
| 68 | |
| 69 | #endif |