video.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* GStreamer
  2. * Copyright (C) <2011> Wim Taymans <wim.taymans@gmail.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., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef __GST_VIDEO_H__
  20. #define __GST_VIDEO_H__
  21. #include <gst/gst.h>
  22. typedef struct _GstVideoAlignment GstVideoAlignment;
  23. #include <gst/video/video-format.h>
  24. #include <gst/video/video-color.h>
  25. #include <gst/video/video-dither.h>
  26. #include <gst/video/video-info.h>
  27. #include <gst/video/video-frame.h>
  28. #include <gst/video/video-enumtypes.h>
  29. #include <gst/video/video-converter.h>
  30. #include <gst/video/video-scaler.h>
  31. #include <gst/video/video-multiview.h>
  32. G_BEGIN_DECLS
  33. /**
  34. * GstVideoAlignment:
  35. * @padding_left: extra pixels on the left side
  36. * @padding_right: extra pixels on the right side
  37. * @padding_top: extra pixels on the top
  38. * @padding_bottom: extra pixels on the bottom
  39. * @stride_align: array with extra alignment requirements for the strides
  40. *
  41. * Extra alignment paramters for the memory of video buffers. This
  42. * structure is usually used to configure the bufferpool if it supports the
  43. * #GST_BUFFER_POOL_OPTION_VIDEO_ALIGNMENT.
  44. */
  45. struct _GstVideoAlignment
  46. {
  47. guint padding_top;
  48. guint padding_bottom;
  49. guint padding_left;
  50. guint padding_right;
  51. guint stride_align[GST_VIDEO_MAX_PLANES];
  52. };
  53. /* metadata macros */
  54. /**
  55. * GST_META_TAG_VIDEO_STR:
  56. *
  57. * This metadata is relevant for video streams.
  58. *
  59. * Since: 1.2
  60. */
  61. #define GST_META_TAG_VIDEO_STR "video"
  62. /**
  63. * GST_META_TAG_VIDEO_ORIENTATION_STR:
  64. *
  65. * This metadata stays relevant as long as video orientation is unchanged.
  66. *
  67. * Since: 1.2
  68. */
  69. #define GST_META_TAG_VIDEO_ORIENTATION_STR "orientation"
  70. /**
  71. * GST_META_TAG_VIDEO_SIZE_STR:
  72. *
  73. * This metadata stays relevant as long as video size is unchanged.
  74. *
  75. * Since: 1.2
  76. */
  77. #define GST_META_TAG_VIDEO_SIZE_STR "size"
  78. /**
  79. * GST_META_TAG_VIDEO_COLORSPACE_STR:
  80. *
  81. * This metadata stays relevant as long as video colorspace is unchanged.
  82. *
  83. * Since: 1.2
  84. */
  85. #define GST_META_TAG_VIDEO_COLORSPACE_STR "colorspace"
  86. void gst_video_alignment_reset (GstVideoAlignment *align);
  87. /* some helper functions */
  88. gboolean gst_video_calculate_display_ratio (guint * dar_n,
  89. guint * dar_d,
  90. guint video_width,
  91. guint video_height,
  92. guint video_par_n,
  93. guint video_par_d,
  94. guint display_par_n,
  95. guint display_par_d);
  96. gboolean gst_video_guess_framerate (GstClockTime duration,
  97. gint * dest_n, gint * dest_d);
  98. /* convert/encode video sample from one format to another */
  99. typedef void (*GstVideoConvertSampleCallback) (GstSample * sample, GError *error, gpointer user_data);
  100. void gst_video_convert_sample_async (GstSample * sample,
  101. const GstCaps * to_caps,
  102. GstClockTime timeout,
  103. GstVideoConvertSampleCallback callback,
  104. gpointer user_data,
  105. GDestroyNotify destroy_notify);
  106. GstSample * gst_video_convert_sample (GstSample * sample,
  107. const GstCaps * to_caps,
  108. GstClockTime timeout,
  109. GError ** error);
  110. G_END_DECLS
  111. #include <gst/video/colorbalancechannel.h>
  112. #include <gst/video/colorbalance.h>
  113. #include <gst/video/gstvideodecoder.h>
  114. #include <gst/video/gstvideoencoder.h>
  115. #include <gst/video/gstvideofilter.h>
  116. #include <gst/video/gstvideometa.h>
  117. #include <gst/video/gstvideopool.h>
  118. #include <gst/video/gstvideosink.h>
  119. #include <gst/video/gstvideoutils.h>
  120. #include <gst/video/navigation.h>
  121. #include <gst/video/video-blend.h>
  122. #include <gst/video/video-event.h>
  123. #include <gst/video/videoorientation.h>
  124. #include <gst/video/video-overlay-composition.h>
  125. #include <gst/video/videooverlay.h>
  126. #endif /* __GST_VIDEO_H__ */