gsttocsetter.inc 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. /* GStreamer
  3. * Copyright (C) 2010, 2012 Alexander Saprykin <[email protected]>
  4. *
  5. * gsttocsetter.h: Interfaces for TOC
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. */
  22. }
  23. Type
  24. P_GstTocSetterInterface = ^T_GstTocSetterInterface;
  25. PGstTocSetter = ^TGstTocSetter;
  26. TGstTocSetter = record end;
  27. T_GstTocSetter = TGstTocSetter;
  28. T_GstTocSetterInterface = record
  29. g_iface : TGTypeInterface;
  30. end;
  31. TGstTocSetterInterface = T_GstTocSetterInterface;
  32. function gst_toc_setter_get_type:TGType;cdecl;external gstreamerlib name 'gst_toc_setter_get_type';
  33. procedure gst_toc_setter_reset(setter:PGstTocSetter);cdecl;external gstreamerlib name 'gst_toc_setter_reset';
  34. function gst_toc_setter_get_toc(setter:PGstTocSetter):PGstToc;cdecl;external gstreamerlib name 'gst_toc_setter_get_toc';
  35. procedure gst_toc_setter_set_toc(setter:PGstTocSetter; toc:PGstToc);cdecl;external gstreamerlib name 'gst_toc_setter_set_toc';