gstfragment.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* GStreamer
  2. * Copyright (C) 2011 Andoni Morales Alastruey <ylatuya@gmail.com>
  3. *
  4. * gstfragment.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. * You should 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 __GSTFRAGMENT_H__
  22. #define __GSTFRAGMENT_H__
  23. #include <glib-object.h>
  24. #include <gst/gst.h>
  25. G_BEGIN_DECLS
  26. #define GST_TYPE_FRAGMENT (gst_fragment_get_type())
  27. #define GST_FRAGMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FRAGMENT,GstFragment))
  28. #define GST_FRAGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FRAGMENT,GstFragmentClass))
  29. #define GST_IS_FRAGMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FRAGMENT))
  30. #define GST_IS_FRAGMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FRAGMENT))
  31. typedef struct _GstFragment GstFragment;
  32. typedef struct _GstFragmentPrivate GstFragmentPrivate;
  33. typedef struct _GstFragmentClass GstFragmentClass;
  34. struct _GstFragment
  35. {
  36. GObject parent;
  37. gchar * uri; /* URI of the fragment */
  38. gchar * redirect_uri; /* Redirect target if any */
  39. gboolean redirect_permanent; /* If the redirect is permanent */
  40. gint64 range_start;
  41. gint64 range_end;
  42. gchar * name; /* Name of the fragment */
  43. gboolean completed; /* Whether the fragment is complete or not */
  44. guint64 download_start_time; /* Epoch time when the download started */
  45. guint64 download_stop_time; /* Epoch time when the download finished */
  46. guint64 start_time; /* Start time of the fragment */
  47. guint64 stop_time; /* Stop time of the fragment */
  48. gboolean index; /* Index of the fragment */
  49. gboolean discontinuous; /* Whether this fragment is discontinuous or not */
  50. GstStructure *headers; /* HTTP request/response headers */
  51. GstFragmentPrivate *priv;
  52. };
  53. struct _GstFragmentClass
  54. {
  55. GObjectClass parent_class;
  56. };
  57. GType gst_fragment_get_type (void);
  58. GstBuffer * gst_fragment_get_buffer (GstFragment *fragment);
  59. void gst_fragment_set_caps (GstFragment * fragment, GstCaps * caps);
  60. GstCaps * gst_fragment_get_caps (GstFragment * fragment);
  61. gboolean gst_fragment_add_buffer (GstFragment *fragment, GstBuffer *buffer);
  62. GstFragment * gst_fragment_new (void);
  63. G_END_DECLS
  64. #endif /* __GSTFRAGMENT_H__ */