riff-read.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* GStreamer RIFF I/O
  2. * Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
  3. *
  4. * riff-read.h: function declarations for parsing a RIFF file
  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 __GST_RIFF_READ_H__
  22. #define __GST_RIFF_READ_H__
  23. #include <glib.h>
  24. #include <gst/gst.h>
  25. #include "riff-ids.h"
  26. G_BEGIN_DECLS
  27. /*
  28. * Operate using pull_range().
  29. */
  30. GstFlowReturn gst_riff_read_chunk (GstElement * element,
  31. GstPad * pad,
  32. guint64 * offset,
  33. guint32 * tag,
  34. GstBuffer ** chunk_data);
  35. /*
  36. * These functions operate on provided data (the caller is
  37. * supposed to strip the chunk headers). The buffer is
  38. * provided by the caller, the strf/strh/data are filled in
  39. * by the function.
  40. */
  41. gboolean gst_riff_parse_chunk (GstElement * element,
  42. GstBuffer * buf,
  43. guint * offset,
  44. guint32 * fourcc,
  45. GstBuffer ** chunk_data);
  46. gboolean gst_riff_parse_file_header (GstElement * element,
  47. GstBuffer * buf,
  48. guint32 * doctype);
  49. gboolean gst_riff_parse_strh (GstElement * element,
  50. GstBuffer * buf,
  51. gst_riff_strh ** strh);
  52. gboolean gst_riff_parse_strf_vids (GstElement * element,
  53. GstBuffer * buf,
  54. gst_riff_strf_vids ** strf,
  55. GstBuffer ** data);
  56. gboolean gst_riff_parse_strf_auds (GstElement * element,
  57. GstBuffer * buf,
  58. gst_riff_strf_auds ** strf,
  59. GstBuffer ** data);
  60. gboolean gst_riff_parse_strf_iavs (GstElement * element,
  61. GstBuffer * buf,
  62. gst_riff_strf_iavs ** strf,
  63. GstBuffer ** data);
  64. void gst_riff_parse_info (GstElement * element,
  65. GstBuffer * buf,
  66. GstTagList ** taglist);
  67. /*
  68. * Init.
  69. */
  70. void gst_riff_init (void);
  71. G_END_DECLS
  72. #endif /* __GST_RIFF_READ_H__ */