1 /* GStreamer 2 * Copyright (C) 2011 Andoni Morales Alastruey <ylatuya@gmail.com> 3 * 4 * gsturidownloader.h: 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Library General Public 8 * License as published by the Free Software Foundation; either 9 * version 2 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Library General Public License for more details. 15 * 16 * Youshould have received a copy of the GNU Library General Public 17 * License along with this library; if not, write to the 18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 19 * Boston, MA 02110-1301, USA. 20 */ 21 22 #ifndef __GSTURI_DOWNLOADER_H__ 23 #define __GSTURI_DOWNLOADER_H__ 24 25 #ifndef GST_USE_UNSTABLE_API 26 #warning "The UriDownloaded library from gst-plugins-bad is unstable API and may change in future." 27 #warning "You can define GST_USE_UNSTABLE_API to avoid this warning." 28 #endif 29 30 #include <glib-object.h> 31 #include <gst/gst.h> 32 #include "gstfragment.h" 33 34 G_BEGIN_DECLS 35 36 #define GST_TYPE_URI_DOWNLOADER (gst_uri_downloader_get_type()) 37 #define GST_URI_DOWNLOADER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_URI_DOWNLOADER,GstUriDownloader)) 38 #define GST_URI_DOWNLOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_URI_DOWNLOADER,GstUriDownloaderClass)) 39 #define GST_IS_URI_DOWNLOADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_URI_DOWNLOADER)) 40 #define GST_IS_URI_DOWNLOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_URI_DOWNLOADER)) 41 42 typedef struct _GstUriDownloader GstUriDownloader; 43 typedef struct _GstUriDownloaderPrivate GstUriDownloaderPrivate; 44 typedef struct _GstUriDownloaderClass GstUriDownloaderClass; 45 46 struct _GstUriDownloader 47 { 48 GstObject parent; 49 50 GstUriDownloaderPrivate *priv; 51 }; 52 53 struct _GstUriDownloaderClass 54 { 55 GstObjectClass parent_class; 56 57 /*< private >*/ 58 gpointer _gst_reserved[GST_PADDING]; 59 }; 60 61 GST_URI_DOWNLOADER_API 62 GType gst_uri_downloader_get_type (void); 63 64 GST_URI_DOWNLOADER_API 65 GstUriDownloader * gst_uri_downloader_new (void); 66 67 GST_URI_DOWNLOADER_API 68 void gst_uri_downloader_set_parent (GstUriDownloader * downloader, GstElement * parent); 69 70 GST_URI_DOWNLOADER_API 71 GstFragment * gst_uri_downloader_fetch_uri (GstUriDownloader * downloader, const gchar * uri, const gchar * referer, gboolean compress, gboolean refresh, gboolean allow_cache, GError ** err); 72 73 GST_URI_DOWNLOADER_API 74 GstFragment * gst_uri_downloader_fetch_uri_with_range (GstUriDownloader * downloader, const gchar * uri, const gchar * referer, gboolean compress, gboolean refresh, gboolean allow_cache, gint64 range_start, gint64 range_end, GError ** err); 75 76 GST_URI_DOWNLOADER_API 77 void gst_uri_downloader_reset (GstUriDownloader *downloader); 78 79 GST_URI_DOWNLOADER_API 80 void gst_uri_downloader_cancel (GstUriDownloader *downloader); 81 82 G_END_DECLS 83 #endif /* __GSTURIDOWNLOADER_H__ */ 84