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_SINK2_H_ 20 #define _GST_HLS_SINK2_H_ 21 22 #include "gstm3u8playlist.h" 23 #include <gst/gst.h> 24 #include <gio/gio.h> 25 26 G_BEGIN_DECLS 27 28 #define GST_TYPE_HLS_SINK2 (gst_hls_sink2_get_type()) 29 #define GST_HLS_SINK2(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_HLS_SINK2,GstHlsSink2)) 30 #define GST_HLS_SINK2_CAST(obj) ((GstHlsSink2 *) obj) 31 #define GST_HLS_SINK2_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_HLS_SINK2,GstHlsSink2Class)) 32 #define GST_IS_HLS_SINK2(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_HLS_SINK2)) 33 #define GST_IS_HLS_SINK2_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_HLS_SINK2)) 34 35 typedef struct _GstHlsSink2 GstHlsSink2; 36 typedef struct _GstHlsSink2Class GstHlsSink2Class; 37 38 struct _GstHlsSink2 39 { 40 GstBin bin; 41 42 GstElement *splitmuxsink; 43 GstPad *audio_sink, *video_sink; 44 GstElement *giostreamsink; 45 46 gchar *location; 47 gchar *playlist_location; 48 gchar *playlist_root; 49 guint playlist_length; 50 gint max_files; 51 gint target_duration; 52 gboolean send_keyframe_requests; 53 54 GstM3U8Playlist *playlist; 55 guint index; 56 57 gchar *current_location; 58 GstClockTime current_running_time_start; 59 GQueue old_locations; 60 GstM3U8PlaylistRenderState state; 61 }; 62 63 struct _GstHlsSink2Class 64 { 65 GstBinClass bin_class; 66 67 GOutputStream * (*get_playlist_stream) (GstHlsSink2 * sink, const gchar * location); 68 GOutputStream * (*get_fragment_stream) (GstHlsSink2 * sink, const gchar * location); 69 }; 70 71 GType gst_hls_sink2_get_type (void); 72 gboolean gst_hls_sink2_plugin_init (GstPlugin * plugin); 73 74 G_END_DECLS 75 76 #endif 77