video-multiview.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* GStreamer
  2. * Copyright (C) <2015> Jan Schmidt <jan@centricular.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_MULTIVIEW_H__
  20. #define __GST_VIDEO_MULTIVIEW_H__
  21. #include <gst/gst.h>
  22. G_BEGIN_DECLS
  23. #define GST_TYPE_VIDEO_MULTIVIEW_FLAGSET (gst_video_multiview_flagset_get_type())
  24. GType gst_video_multiview_flagset_get_type (void);
  25. const gchar * gst_video_multiview_mode_to_caps_string (GstVideoMultiviewMode mview_mode);
  26. GstVideoMultiviewMode gst_video_multiview_mode_from_caps_string (const gchar * caps_mview_mode);
  27. const GValue *gst_video_multiview_get_mono_modes(void);
  28. const GValue *gst_video_multiview_get_unpacked_modes(void);
  29. const GValue *gst_video_multiview_get_doubled_height_modes(void);
  30. const GValue *gst_video_multiview_get_doubled_width_modes(void);
  31. const GValue *gst_video_multiview_get_doubled_size_modes(void);
  32. void gst_video_multiview_video_info_change_mode (GstVideoInfo *info,
  33. GstVideoMultiviewMode out_mview_mode, GstVideoMultiviewFlags out_mview_flags);
  34. gboolean gst_video_multiview_guess_half_aspect (GstVideoMultiviewMode mv_mode,
  35. guint width, guint height, guint par_n, guint par_d);
  36. #if 0 /* Place-holder for later MVC support */
  37. #define GST_VIDEO_MULTIVIEW_META_API_TYPE (gst_video_multiview_meta_api_get_type())
  38. #define GST_VIDEO_MULTIVIEW_META_INFO (gst_video_multiview_meta_get_info())
  39. typedef struct _GstVideoMultiviewMeta GstVideoMultiviewMeta;
  40. typedef struct _GstVideoMultiviewViewInfo GstVideoMultiviewViewInfo;
  41. GType gst_video_multiview_meta_api_get_type (void);
  42. const GstMetaInfo * gst_video_multiview_meta_get_info (void);
  43. GstVideoMultiviewMeta * gst_buffer_add_video_multiview_meta (GstBuffer *buffer, guint n_views);
  44. #define gst_buffer_get_video_multiview_meta(b) ((GstVideoMultiviewMeta *)gst_buffer_get_meta((b),GST_VIDEO_MULTIVIEW_META_API_TYPE))
  45. void gst_video_multiview_meta_set_n_views (GstVideoMultiviewMeta *mview_meta, guint n_views);
  46. typedef enum {
  47. GST_VIDEO_MULTIVIEW_VIEW_UNKNOWN = 0,
  48. GST_VIDEO_MULTIVIEW_VIEW_MONO = 1,
  49. GST_VIDEO_MULTIVIEW_VIEW_LEFT = 2,
  50. GST_VIDEO_MULTIVIEW_VIEW_RIGHT = 3
  51. } GstVideoMultiviewViewLabel;
  52. struct _GstVideoMultiviewViewInfo {
  53. GstVideoMultiviewViewLabel view_label;
  54. guint meta_id; /* id of the GstVideoMeta for this view */
  55. /*< private >*/
  56. gpointer _gst_reserved[GST_PADDING];
  57. };
  58. struct _GstVideoMultiviewMeta {
  59. GstMeta meta;
  60. guint n_views;
  61. GstVideoMultiviewViewInfo *view_info;
  62. };
  63. #endif
  64. G_END_DECLS
  65. #endif