gsturidownloader.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. #ifndef __GSTURI_DOWNLOADER_H__
  22. #define __GSTURI_DOWNLOADER_H__
  23. #ifndef GST_USE_UNSTABLE_API
  24. #warning "The UriDownloaded library from gst-plugins-bad is unstable API and may change in future."
  25. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  26. #endif
  27. #include <glib-object.h>
  28. #include <gst/gst.h>
  29. #include "gstfragment.h"
  30. G_BEGIN_DECLS
  31. #define GST_TYPE_URI_DOWNLOADER (gst_uri_downloader_get_type())
  32. #define GST_URI_DOWNLOADER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_URI_DOWNLOADER,GstUriDownloader))
  33. #define GST_URI_DOWNLOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_URI_DOWNLOADER,GstUriDownloaderClass))
  34. #define GST_IS_URI_DOWNLOADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_URI_DOWNLOADER))
  35. #define GST_IS_URI_DOWNLOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_URI_DOWNLOADER))
  36. typedef struct _GstUriDownloader GstUriDownloader;
  37. typedef struct _GstUriDownloaderPrivate GstUriDownloaderPrivate;
  38. typedef struct _GstUriDownloaderClass GstUriDownloaderClass;
  39. struct _GstUriDownloader
  40. {
  41. GstObject parent;
  42. GstUriDownloaderPrivate *priv;
  43. };
  44. struct _GstUriDownloaderClass
  45. {
  46. GstObjectClass parent_class;
  47. /*< private >*/
  48. gpointer _gst_reserved[GST_PADDING];
  49. };
  50. GType gst_uri_downloader_get_type (void);
  51. GstUriDownloader * gst_uri_downloader_new (void);
  52. GstFragment * gst_uri_downloader_fetch_uri (GstUriDownloader * downloader, const gchar * uri, const gchar * referer, gboolean compress, gboolean refresh, gboolean allow_cache, GError ** err);
  53. 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);
  54. void gst_uri_downloader_reset (GstUriDownloader *downloader);
  55. void gst_uri_downloader_cancel (GstUriDownloader *downloader);
  56. void gst_uri_downloader_free (GstUriDownloader *downloader);
  57. G_END_DECLS
  58. #endif /* __GSTURIDOWNLOADER_H__ */