2013-06-03 21:02:15 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2013 Mathieu Duponchelle <mduponchelle1@gmail.com>
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GST_FRAME_POSITIONNER_H_
|
|
|
|
#define _GST_FRAME_POSITIONNER_H_
|
|
|
|
|
|
|
|
#include <gst/base/gstbasetransform.h>
|
2013-08-21 09:32:45 +00:00
|
|
|
#include <ges/ges-track-element.h>
|
|
|
|
#include <ges/ges-track.h>
|
2013-06-03 21:02:15 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
#define GST_TYPE_FRAME_POSITIONNER (gst_frame_positioner_get_type())
|
|
|
|
#define GST_FRAME_POSITIONNER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FRAME_POSITIONNER,GstFramePositioner))
|
|
|
|
#define GST_FRAME_POSITIONNER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FRAME_POSITIONNER,GstFramePositionerClass))
|
2013-06-03 21:02:15 +00:00
|
|
|
#define GST_IS_FRAME_POSITIONNER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FRAME_POSITIONNER))
|
|
|
|
#define GST_IS_FRAME_POSITIONNER_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FRAME_POSITIONNER))
|
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
typedef struct _GstFramePositioner GstFramePositioner;
|
|
|
|
typedef struct _GstFramePositionerClass GstFramePositionerClass;
|
|
|
|
typedef struct _GstFramePositionerMeta GstFramePositionerMeta;
|
2013-06-03 21:02:15 +00:00
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
struct _GstFramePositioner
|
2013-06-03 21:02:15 +00:00
|
|
|
{
|
2016-04-13 09:31:05 +00:00
|
|
|
GstBaseTransform base_framepositioner;
|
2013-06-03 21:02:15 +00:00
|
|
|
|
2013-08-21 09:32:45 +00:00
|
|
|
GstElement *capsfilter;
|
|
|
|
|
|
|
|
GESTrackElement *track_source;
|
|
|
|
GESTrack *current_track;
|
|
|
|
|
2016-08-02 20:42:20 +00:00
|
|
|
gboolean scale_in_compositor;
|
2013-06-03 21:02:15 +00:00
|
|
|
gdouble alpha;
|
2020-04-17 00:27:30 +00:00
|
|
|
gdouble posx;
|
|
|
|
gdouble posy;
|
2013-06-03 21:02:15 +00:00
|
|
|
guint zorder;
|
2020-04-17 00:27:30 +00:00
|
|
|
gdouble width;
|
|
|
|
gdouble height;
|
2021-04-21 23:12:30 +00:00
|
|
|
gint operator;
|
2020-02-19 21:09:19 +00:00
|
|
|
gint natural_width;
|
|
|
|
gint natural_height;
|
2013-08-21 09:32:45 +00:00
|
|
|
gint track_width;
|
|
|
|
gint track_height;
|
2013-09-04 23:03:51 +00:00
|
|
|
gint fps_n;
|
|
|
|
gint fps_d;
|
2013-12-24 13:34:09 +00:00
|
|
|
|
2017-10-31 15:05:08 +00:00
|
|
|
gint par_n;
|
|
|
|
gint par_d;
|
|
|
|
|
2020-02-19 21:09:19 +00:00
|
|
|
gboolean user_positioned;
|
|
|
|
|
2013-12-24 13:34:09 +00:00
|
|
|
/* This should never be made public, no padding needed */
|
2013-06-03 21:02:15 +00:00
|
|
|
};
|
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
struct _GstFramePositionerClass
|
2013-06-03 21:02:15 +00:00
|
|
|
{
|
2016-04-13 09:31:05 +00:00
|
|
|
GstBaseTransformClass base_framepositioner_class;
|
2013-06-03 21:02:15 +00:00
|
|
|
};
|
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
struct _GstFramePositionerMeta {
|
2013-06-03 21:02:15 +00:00
|
|
|
GstMeta meta;
|
|
|
|
|
|
|
|
gdouble alpha;
|
|
|
|
gint posx;
|
|
|
|
gint posy;
|
2015-06-13 16:48:20 +00:00
|
|
|
gint height;
|
|
|
|
gint width;
|
2013-06-03 21:02:15 +00:00
|
|
|
guint zorder;
|
2021-04-21 23:12:30 +00:00
|
|
|
gint operator;
|
2013-06-03 21:02:15 +00:00
|
|
|
};
|
|
|
|
|
2016-04-13 09:31:05 +00:00
|
|
|
G_GNUC_INTERNAL void ges_frame_positioner_set_source_and_filter (GstFramePositioner *pos,
|
2013-08-21 09:32:45 +00:00
|
|
|
GESTrackElement *trksrc,
|
|
|
|
GstElement *capsfilter);
|
2016-04-13 09:31:05 +00:00
|
|
|
G_GNUC_INTERNAL GType gst_frame_positioner_get_type (void);
|
2015-06-25 08:28:41 +00:00
|
|
|
G_GNUC_INTERNAL GType
|
2016-04-13 09:31:05 +00:00
|
|
|
gst_frame_positioner_meta_api_get_type (void);
|
2013-06-03 21:02:15 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|