2006-09-02 14:28:55 +00:00
|
|
|
/* GStreamer
|
2003-10-10 12:47:42 +00:00
|
|
|
* Copyright (C) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2006-09-02 14:28:55 +00:00
|
|
|
* 2006 Edgard Lima <edgard.lima@indt.org.br>
|
2003-10-10 12:47:42 +00:00
|
|
|
*
|
2011-08-08 14:25:31 +00:00
|
|
|
* gstv4l2videooverlay.h: tv mixer interface implementation for V4L2
|
2003-10-10 12:47:42 +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.
|
|
|
|
*/
|
|
|
|
|
2011-08-08 14:25:31 +00:00
|
|
|
#ifndef __GST_V4L2_VIDEO_OVERLAY_H__
|
|
|
|
#define __GST_V4L2_VIDEO_OVERLAY_H__
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
#include <X11/X.h>
|
|
|
|
|
2003-10-10 12:47:42 +00:00
|
|
|
#include <gst/gst.h>
|
2010-10-02 19:45:14 +00:00
|
|
|
#include <gst/interfaces/navigation.h>
|
|
|
|
#include <gst/video/gstvideosink.h> /* for GstVideoRectange */
|
2011-11-29 18:10:58 +00:00
|
|
|
#include <gst/video/videooverlay.h>
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
#include "gstv4l2object.h"
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2004-03-15 16:32:54 +00:00
|
|
|
G_BEGIN_DECLS
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2011-08-08 14:25:31 +00:00
|
|
|
void gst_v4l2_video_overlay_start (GstV4l2Object *v4l2object);
|
|
|
|
void gst_v4l2_video_overlay_stop (GstV4l2Object *v4l2object);
|
|
|
|
gboolean gst_v4l2_video_overlay_get_render_rect (GstV4l2Object *v4l2object,
|
2010-10-02 19:45:14 +00:00
|
|
|
GstVideoRectangle *rect);
|
2006-05-11 17:59:59 +00:00
|
|
|
|
2011-10-21 12:51:23 +00:00
|
|
|
void gst_v4l2_video_overlay_interface_init (GstVideoOverlayInterface * iface);
|
2011-08-08 14:25:31 +00:00
|
|
|
void gst_v4l2_video_overlay_set_window_handle (GstV4l2Object * v4l2object,
|
2010-09-21 10:49:31 +00:00
|
|
|
guintptr id);
|
2011-08-08 14:25:31 +00:00
|
|
|
void gst_v4l2_video_overlay_prepare_window_handle (GstV4l2Object * v4l2object,
|
2010-06-10 16:15:46 +00:00
|
|
|
gboolean required);
|
2006-05-11 17:59:59 +00:00
|
|
|
|
2006-10-09 07:01:19 +00:00
|
|
|
|
2011-08-08 14:25:31 +00:00
|
|
|
#define GST_IMPLEMENT_V4L2_VIDEO_OVERLAY_METHODS(Type, interface_as_function) \
|
2006-10-09 07:01:19 +00:00
|
|
|
\
|
|
|
|
static void \
|
2011-08-08 14:25:31 +00:00
|
|
|
interface_as_function ## _video_overlay_set_window_handle (GstVideoOverlay * overlay, \
|
|
|
|
guintptr id) \
|
2006-10-09 07:01:19 +00:00
|
|
|
{ \
|
2011-08-08 14:25:31 +00:00
|
|
|
Type *this = (Type*) overlay; \
|
|
|
|
gst_v4l2_video_overlay_set_window_handle (this->v4l2object, id); \
|
2006-10-09 07:01:19 +00:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
static void \
|
2011-10-21 12:51:23 +00:00
|
|
|
interface_as_function ## _video_overlay_interface_init (GstVideoOverlayInterface * iface) \
|
2006-10-09 07:01:19 +00:00
|
|
|
{ \
|
|
|
|
/* default virtual functions */ \
|
2011-08-08 14:25:31 +00:00
|
|
|
iface->set_window_handle = interface_as_function ## _video_overlay_set_window_handle; \
|
2006-10-09 07:01:19 +00:00
|
|
|
\
|
2011-08-08 14:25:31 +00:00
|
|
|
gst_v4l2_video_overlay_interface_init (iface); \
|
2006-10-09 07:01:19 +00:00
|
|
|
} \
|
2004-03-15 16:32:54 +00:00
|
|
|
|
2003-10-10 12:47:42 +00:00
|
|
|
|
2011-08-08 14:25:31 +00:00
|
|
|
#endif /* __GST_V4L2_VIDEO_OVERLAY_H__ */
|