2002-09-26 12:20:12 +00:00
|
|
|
/* GStreamer
|
2011-08-18 17:15:03 +00:00
|
|
|
* Copyright (C) <2011> Wim Taymans <wim.taymans@gmail.com>
|
2002-09-26 12:20:12 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2002-11-09 18:31:27 +00:00
|
|
|
#ifndef __GST_VIDEO_H__
|
|
|
|
#define __GST_VIDEO_H__
|
2002-09-26 12:20:12 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2012-08-20 08:50:59 +00:00
|
|
|
|
|
|
|
typedef struct _GstVideoAlignment GstVideoAlignment;
|
|
|
|
|
2012-06-05 10:47:22 +00:00
|
|
|
#include <gst/video/video-event.h>
|
|
|
|
#include <gst/video/video-format.h>
|
|
|
|
#include <gst/video/video-color.h>
|
|
|
|
#include <gst/video/video-info.h>
|
|
|
|
#include <gst/video/video-frame.h>
|
2009-01-06 10:16:16 +00:00
|
|
|
#include <gst/video/video-enumtypes.h>
|
2008-12-31 13:01:30 +00:00
|
|
|
|
2012-06-05 10:47:22 +00:00
|
|
|
G_BEGIN_DECLS
|
2011-01-03 10:41:56 +00:00
|
|
|
|
2012-08-20 08:50:59 +00:00
|
|
|
/**
|
|
|
|
* GstVideoAlignment:
|
|
|
|
* @padding_left: extra pixels on the left side
|
|
|
|
* @padding_right: extra pixels on the right side
|
|
|
|
* @padding_top: extra pixels on the top
|
|
|
|
* @padding_bottom: extra pixels on the bottom
|
|
|
|
* @stride_align: array with extra alignment requirements for the strides
|
|
|
|
*
|
|
|
|
* Extra alignment paramters for the memory of video buffers. This
|
|
|
|
* structure is usually used to configure the bufferpool if it supports the
|
|
|
|
* #GST_BUFFER_POOL_OPTION_VIDEO_ALIGNMENT.
|
|
|
|
*/
|
|
|
|
struct _GstVideoAlignment
|
|
|
|
{
|
|
|
|
guint padding_top;
|
|
|
|
guint padding_bottom;
|
|
|
|
guint padding_left;
|
|
|
|
guint padding_right;
|
|
|
|
guint stride_align[GST_VIDEO_MAX_PLANES];
|
|
|
|
};
|
|
|
|
|
|
|
|
void gst_video_alignment_reset (GstVideoAlignment *align);
|
|
|
|
|
|
|
|
|
2011-08-18 17:15:03 +00:00
|
|
|
/* some helper functions */
|
2011-05-27 22:25:00 +00:00
|
|
|
gboolean gst_video_calculate_display_ratio (guint * dar_n,
|
|
|
|
guint * dar_d,
|
|
|
|
guint video_width,
|
|
|
|
guint video_height,
|
|
|
|
guint video_par_n,
|
|
|
|
guint video_par_d,
|
|
|
|
guint display_par_n,
|
|
|
|
guint display_par_d);
|
|
|
|
|
2011-12-01 15:48:49 +00:00
|
|
|
/* convert/encode video sample from one format to another */
|
2011-05-27 22:25:00 +00:00
|
|
|
|
2011-12-01 15:48:49 +00:00
|
|
|
typedef void (*GstVideoConvertSampleCallback) (GstSample * sample, GError *error, gpointer user_data);
|
2011-05-27 22:25:00 +00:00
|
|
|
|
2011-12-01 15:48:49 +00:00
|
|
|
void gst_video_convert_sample_async (GstSample * sample,
|
2011-05-27 22:25:00 +00:00
|
|
|
const GstCaps * to_caps,
|
|
|
|
GstClockTime timeout,
|
2011-12-01 15:48:49 +00:00
|
|
|
GstVideoConvertSampleCallback callback,
|
2011-05-27 22:25:00 +00:00
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify destroy_notify);
|
|
|
|
|
2011-12-01 15:48:49 +00:00
|
|
|
GstSample * gst_video_convert_sample (GstSample * sample,
|
2011-05-27 22:25:00 +00:00
|
|
|
const GstCaps * to_caps,
|
|
|
|
GstClockTime timeout,
|
|
|
|
GError ** error);
|
2005-02-09 22:31:05 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2002-11-09 18:31:27 +00:00
|
|
|
#endif /* __GST_VIDEO_H__ */
|