gstmpegvideometa.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* Gstreamer
  2. * Copyright (C) <2012> Edward Hervey <edward@collabora.com>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. * Boston, MA 02111-1307, USA.
  18. */
  19. #ifndef __GST_MPEG_VIDEO_META_H__
  20. #define __GST_MPEG_VIDEO_META_H__
  21. #ifndef GST_USE_UNSTABLE_API
  22. #warning "The Mpeg video parsing library is unstable API and may change in future."
  23. #warning "You can define GST_USE_UNSTABLE_API to avoid this warning."
  24. #endif
  25. #include <gst/gst.h>
  26. #include <gst/codecparsers/gstmpegvideoparser.h>
  27. G_BEGIN_DECLS
  28. typedef struct _GstMpegVideoMeta GstMpegVideoMeta;
  29. GType gst_mpeg_video_meta_api_get_type (void);
  30. #define GST_MPEG_VIDEO_META_API_TYPE (gst_mpeg_video_meta_api_get_type())
  31. #define GST_MPEG_VIDEO_META_INFO (gst_mpeg_video_meta_get_info())
  32. const GstMetaInfo * gst_mpeg_video_meta_get_info (void);
  33. /**
  34. * GstMpegVideoMeta:
  35. * @meta: parent #GstMeta
  36. * @sequencehdr: the #GstMpegVideoSequenceHdr if present in the buffer
  37. * @sequenceext: the #GstMpegVideoSequenceExt if present in the buffer
  38. * @sequencedispext: the #GstMpegVideoSequenceDisplayExt if present in the
  39. * buffer.
  40. * @pichdr: the #GstMpegVideoPictureHdr if present in the buffer.
  41. * @picext: the #GstMpegVideoPictureExt if present in the buffer.
  42. * @quantext: the #GstMpegVideoQuantMatrixExt if present in the buffer
  43. *
  44. * Extra buffer metadata describing the contents of a MPEG1/2 Video frame
  45. *
  46. * Can be used by elements (mainly decoders) to avoid having to parse
  47. * Mpeg video 1/2 packets if it can be done upstream.
  48. *
  49. * The various fields are only valid during the lifetime of the #GstMpegVideoMeta.
  50. * If elements wish to use those for longer, they are required to make a copy.
  51. *
  52. * Since: 1.2
  53. */
  54. struct _GstMpegVideoMeta {
  55. GstMeta meta;
  56. GstMpegVideoSequenceHdr *sequencehdr;
  57. GstMpegVideoSequenceExt *sequenceext;
  58. GstMpegVideoSequenceDisplayExt *sequencedispext;
  59. GstMpegVideoPictureHdr *pichdr;
  60. GstMpegVideoPictureExt *picext;
  61. GstMpegVideoQuantMatrixExt *quantext;
  62. guint num_slices;
  63. gsize slice_offset;
  64. };
  65. #define gst_buffer_get_mpeg_video_meta(b) ((GstMpegVideoMeta*)gst_buffer_get_meta((b),GST_MPEG_VIDEO_META_API_TYPE))
  66. GstMpegVideoMeta *
  67. gst_buffer_add_mpeg_video_meta (GstBuffer * buffer,
  68. const GstMpegVideoSequenceHdr *seq_hdr,
  69. const GstMpegVideoSequenceExt *seq_ext,
  70. const GstMpegVideoSequenceDisplayExt *disp_ext,
  71. const GstMpegVideoPictureHdr *pic_hdr,
  72. const GstMpegVideoPictureExt *pic_ext,
  73. const GstMpegVideoQuantMatrixExt *quant_ext);
  74. G_END_DECLS
  75. #endif