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 16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 17 * Boston, MA 02110-1301, USA. 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 46 gchar *location; 47 gchar *playlist_location; 48 gchar *playlist_root; 49 guint playlist_length; 50 GstM3U8Playlist *playlist; 51 guint index; 52 gint max_files; 53 gint target_duration; 54 GstSegment segment; 55 gboolean waiting_fku; 56 GstClockTime last_running_time; 57 GstM3U8PlaylistRenderState state; 58 }; 59 60 struct _GstHlsSinkClass 61 { 62 GstBinClass bin_class; 63 }; 64 65 GType gst_hls_sink_get_type (void); 66 gboolean gst_hls_sink_plugin_init (GstPlugin * plugin); 67 68 G_END_DECLS 69 70 #endif 71