gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
*/
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-videorate
|
2017-01-23 19:36:11 +00:00
|
|
|
* @title: videorate
|
2006-03-02 16:47:34 +00:00
|
|
|
*
|
2006-09-22 09:52:21 +00:00
|
|
|
* This element takes an incoming stream of timestamped video frames.
|
|
|
|
* It will produce a perfect stream that matches the source pad's framerate.
|
|
|
|
*
|
|
|
|
* The correction is performed by dropping and duplicating frames, no fancy
|
|
|
|
* algorithm is used to interpolate frames (yet).
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2006-04-28 14:49:22 +00:00
|
|
|
* By default the element will simply negotiate the same framerate on its
|
2006-09-22 09:52:21 +00:00
|
|
|
* source and sink pad.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2006-09-22 09:52:21 +00:00
|
|
|
* This operation is useful to link to elements that require a perfect stream.
|
|
|
|
* Typical examples are formats that do not store timestamps for video frames,
|
|
|
|
* but only store a framerate, like Ogg and AVI.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2006-09-22 09:52:21 +00:00
|
|
|
* A conversion to a specific framerate can be forced by using filtered caps on
|
2006-04-28 14:49:22 +00:00
|
|
|
* the source pad.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
|
|
|
* The properties #GstVideoRate:in, #GstVideoRate:out, #GstVideoRate:duplicate
|
|
|
|
* and #GstVideoRate:drop can be read to obtain information about number of
|
|
|
|
* input frames, output frames, dropped frames (i.e. the number of unused input
|
|
|
|
* frames) and duplicated frames (i.e. the number of times an input frame was
|
|
|
|
* duplicated, beside being used normally).
|
2006-04-28 14:49:22 +00:00
|
|
|
*
|
|
|
|
* An input stream that needs no adjustments will thus never have dropped or
|
|
|
|
* duplicated frames.
|
|
|
|
*
|
2008-07-10 21:06:06 +00:00
|
|
|
* When the #GstVideoRate:silent property is set to FALSE, a GObject property
|
|
|
|
* notification will be emitted whenever one of the #GstVideoRate:duplicate or
|
|
|
|
* #GstVideoRate:drop values changes.
|
2006-04-28 14:49:22 +00:00
|
|
|
* This can potentially cause performance degradation.
|
|
|
|
* Note that property notification will happen from the streaming thread, so
|
|
|
|
* applications should be prepared for this.
|
2008-07-10 21:06:06 +00:00
|
|
|
*
|
2013-09-17 15:42:05 +00:00
|
|
|
* The property #GstVideoRate:rate allows the modification of video speed by a
|
|
|
|
* certain factor. It must not be confused with framerate. Think of rate as
|
|
|
|
* speed and framerate as flow.
|
|
|
|
*
|
2017-01-23 19:36:11 +00:00
|
|
|
* ## Example pipelines
|
2008-07-10 21:06:06 +00:00
|
|
|
* |[
|
2015-05-09 21:33:26 +00:00
|
|
|
* gst-launch-1.0 -v uridecodebin uri=file:///path/to/video.ogg ! videoconvert ! videoscale ! videorate ! video/x-raw,framerate=15/1 ! autovideosink
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* Decode a video file and adjust the framerate to 15 fps before playing.
|
2015-05-09 21:33:26 +00:00
|
|
|
* To create a test Ogg/Theora file refer to the documentation of theoraenc.
|
2008-07-10 21:06:06 +00:00
|
|
|
* |[
|
2015-05-09 21:33:26 +00:00
|
|
|
* gst-launch-1.0 -v v4l2src ! videorate ! video/x-raw,framerate=25/2 ! theoraenc ! oggmux ! filesink location=recording.ogg
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* Capture video from a V4L device, and adjust the stream to 12.5 fps before
|
2006-09-22 09:52:21 +00:00
|
|
|
* encoding to Ogg/Theora.
|
2015-05-09 21:33:26 +00:00
|
|
|
* |[
|
|
|
|
* gst-launch-1.0 -v uridecodebin uri=file:///path/to/video.ogg ! videoconvert ! videoscale ! videorate ! video/x-raw,framerate=1/5 ! jpegenc ! multifilesink location=snapshot-%05d.jpg
|
2017-01-23 19:36:11 +00:00
|
|
|
* ]|
|
|
|
|
* Decode a video file and save a snapshot every 5 seconds as consecutively numbered jpeg file.
|
|
|
|
*
|
2006-03-02 16:47:34 +00:00
|
|
|
*/
|
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
#include "gstvideorate.h"
|
2015-01-18 19:58:36 +00:00
|
|
|
#include <gst/video/video.h>
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2006-06-23 09:53:09 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (video_rate_debug);
|
2005-12-01 01:12:55 +00:00
|
|
|
#define GST_CAT_DEFAULT video_rate_debug
|
|
|
|
|
|
|
|
/* GstVideoRate signals and args */
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
#define DEFAULT_SILENT TRUE
|
|
|
|
#define DEFAULT_NEW_PREF 1.0
|
2009-09-11 05:36:10 +00:00
|
|
|
#define DEFAULT_SKIP_TO_FIRST FALSE
|
2011-04-29 12:58:02 +00:00
|
|
|
#define DEFAULT_DROP_ONLY FALSE
|
2011-05-02 09:43:38 +00:00
|
|
|
#define DEFAULT_AVERAGE_PERIOD 0
|
2011-09-19 17:26:04 +00:00
|
|
|
#define DEFAULT_MAX_RATE G_MAXINT
|
2013-09-17 15:42:05 +00:00
|
|
|
#define DEFAULT_RATE 1.0
|
2004-06-22 11:19:46 +00:00
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
enum
|
|
|
|
{
|
2011-11-24 13:41:13 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_IN,
|
|
|
|
PROP_OUT,
|
|
|
|
PROP_DUP,
|
|
|
|
PROP_DROP,
|
|
|
|
PROP_SILENT,
|
|
|
|
PROP_NEW_PREF,
|
|
|
|
PROP_SKIP_TO_FIRST,
|
|
|
|
PROP_DROP_ONLY,
|
|
|
|
PROP_AVERAGE_PERIOD,
|
2013-09-17 15:42:05 +00:00
|
|
|
PROP_MAX_RATE,
|
|
|
|
PROP_RATE
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
};
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static GstStaticPadTemplate gst_video_rate_src_template =
|
2004-11-23 12:39:27 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2015-08-10 20:03:48 +00:00
|
|
|
GST_STATIC_CAPS ("video/x-raw(ANY);" "video/x-bayer(ANY);"
|
|
|
|
"image/jpeg(ANY);" "image/png(ANY)")
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
);
|
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static GstStaticPadTemplate gst_video_rate_sink_template =
|
2004-11-23 12:39:27 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2015-08-10 20:03:48 +00:00
|
|
|
GST_STATIC_CAPS ("video/x-raw(ANY);" "video/x-bayer(ANY);"
|
|
|
|
"image/jpeg(ANY);" "image/png(ANY)")
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
);
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
static void gst_video_rate_swap_prev (GstVideoRate * videorate,
|
|
|
|
GstBuffer * buffer, gint64 time);
|
2011-09-06 13:24:32 +00:00
|
|
|
static gboolean gst_video_rate_sink_event (GstBaseTransform * trans,
|
2011-08-23 08:11:52 +00:00
|
|
|
GstEvent * event);
|
2013-09-17 15:42:05 +00:00
|
|
|
static gboolean gst_video_rate_src_event (GstBaseTransform * trans,
|
|
|
|
GstEvent * event);
|
2011-08-23 08:11:52 +00:00
|
|
|
static gboolean gst_video_rate_query (GstBaseTransform * trans,
|
|
|
|
GstPadDirection direction, GstQuery * query);
|
|
|
|
|
|
|
|
static gboolean gst_video_rate_setcaps (GstBaseTransform * trans,
|
|
|
|
GstCaps * in_caps, GstCaps * out_caps);
|
|
|
|
|
|
|
|
static GstCaps *gst_video_rate_transform_caps (GstBaseTransform * trans,
|
2011-09-06 13:24:32 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter);
|
2011-08-23 08:11:52 +00:00
|
|
|
|
2012-02-22 11:27:49 +00:00
|
|
|
static GstCaps *gst_video_rate_fixate_caps (GstBaseTransform * trans,
|
2011-08-23 08:11:52 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps);
|
|
|
|
|
|
|
|
static GstFlowReturn gst_video_rate_transform_ip (GstBaseTransform * trans,
|
|
|
|
GstBuffer * buf);
|
|
|
|
|
2015-01-18 19:58:36 +00:00
|
|
|
static gboolean gst_video_rate_propose_allocation (GstBaseTransform * trans,
|
|
|
|
GstQuery * decide_query, GstQuery * query);
|
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
static gboolean gst_video_rate_start (GstBaseTransform * trans);
|
2011-12-06 21:57:32 +00:00
|
|
|
static gboolean gst_video_rate_stop (GstBaseTransform * trans);
|
2011-08-23 08:11:52 +00:00
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_rate_set_property (GObject * object,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
2005-12-01 01:12:55 +00:00
|
|
|
static void gst_video_rate_get_property (GObject * object,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
2010-10-07 19:37:10 +00:00
|
|
|
static GParamSpec *pspec_drop = NULL;
|
|
|
|
static GParamSpec *pspec_duplicate = NULL;
|
|
|
|
|
2011-04-19 09:35:53 +00:00
|
|
|
#define gst_video_rate_parent_class parent_class
|
2011-09-06 13:24:32 +00:00
|
|
|
G_DEFINE_TYPE (GstVideoRate, gst_video_rate, GST_TYPE_BASE_TRANSFORM);
|
2009-04-28 09:32:49 +00:00
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_rate_class_init (GstVideoRateClass * klass)
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
2011-08-23 08:11:52 +00:00
|
|
|
GstBaseTransformClass *base_class = GST_BASE_TRANSFORM_CLASS (klass);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2005-12-01 01:12:55 +00:00
|
|
|
object_class->set_property = gst_video_rate_set_property;
|
|
|
|
object_class->get_property = gst_video_rate_get_property;
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
base_class->set_caps = GST_DEBUG_FUNCPTR (gst_video_rate_setcaps);
|
|
|
|
base_class->transform_caps =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_rate_transform_caps);
|
|
|
|
base_class->transform_ip = GST_DEBUG_FUNCPTR (gst_video_rate_transform_ip);
|
2011-09-06 13:24:32 +00:00
|
|
|
base_class->sink_event = GST_DEBUG_FUNCPTR (gst_video_rate_sink_event);
|
2013-09-17 15:42:05 +00:00
|
|
|
base_class->src_event = GST_DEBUG_FUNCPTR (gst_video_rate_src_event);
|
2011-08-23 08:11:52 +00:00
|
|
|
base_class->start = GST_DEBUG_FUNCPTR (gst_video_rate_start);
|
2011-12-06 21:57:32 +00:00
|
|
|
base_class->stop = GST_DEBUG_FUNCPTR (gst_video_rate_stop);
|
2011-08-23 08:11:52 +00:00
|
|
|
base_class->fixate_caps = GST_DEBUG_FUNCPTR (gst_video_rate_fixate_caps);
|
|
|
|
base_class->query = GST_DEBUG_FUNCPTR (gst_video_rate_query);
|
2015-01-18 19:58:36 +00:00
|
|
|
base_class->propose_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_video_rate_propose_allocation);
|
2011-08-23 08:11:52 +00:00
|
|
|
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_IN,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
g_param_spec_uint64 ("in", "In",
|
2008-03-22 15:00:53 +00:00
|
|
|
"Number of input frames", 0, G_MAXUINT64, 0,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_OUT,
|
2008-03-22 15:00:53 +00:00
|
|
|
g_param_spec_uint64 ("out", "Out", "Number of output frames", 0,
|
|
|
|
G_MAXUINT64, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
2010-10-07 19:37:10 +00:00
|
|
|
pspec_duplicate = g_param_spec_uint64 ("duplicate", "Duplicate",
|
|
|
|
"Number of duplicated frames", 0, G_MAXUINT64, 0,
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_DUP, pspec_duplicate);
|
2010-10-07 19:37:10 +00:00
|
|
|
pspec_drop = g_param_spec_uint64 ("drop", "Drop", "Number of dropped frames",
|
|
|
|
0, G_MAXUINT64, 0, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_DROP, pspec_drop);
|
|
|
|
g_object_class_install_property (object_class, PROP_SILENT,
|
2004-06-22 11:19:46 +00:00
|
|
|
g_param_spec_boolean ("silent", "silent",
|
2008-03-22 15:00:53 +00:00
|
|
|
"Don't emit notify for dropped and duplicated frames", DEFAULT_SILENT,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_NEW_PREF,
|
2008-03-22 15:00:53 +00:00
|
|
|
g_param_spec_double ("new-pref", "New Pref",
|
|
|
|
"Value indicating how much to prefer new frames (unused)", 0.0, 1.0,
|
|
|
|
DEFAULT_NEW_PREF, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2009-09-11 05:38:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVideoRate:skip-to-first:
|
2013-09-17 15:42:05 +00:00
|
|
|
*
|
2009-09-11 05:38:28 +00:00
|
|
|
* Don't produce buffers before the first one we receive.
|
|
|
|
*/
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_SKIP_TO_FIRST,
|
2009-09-11 05:36:10 +00:00
|
|
|
g_param_spec_boolean ("skip-to-first", "Skip to first buffer",
|
|
|
|
"Don't produce buffers before the first one we receive",
|
|
|
|
DEFAULT_SKIP_TO_FIRST, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-04-29 12:58:02 +00:00
|
|
|
/**
|
|
|
|
* GstVideoRate:drop-only:
|
|
|
|
*
|
|
|
|
* Only drop frames, no duplicates are produced.
|
|
|
|
*/
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_DROP_ONLY,
|
2011-04-29 12:58:02 +00:00
|
|
|
g_param_spec_boolean ("drop-only", "Only Drop",
|
|
|
|
"Only drop frames, no duplicates are produced",
|
|
|
|
DEFAULT_DROP_ONLY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2011-05-02 09:43:38 +00:00
|
|
|
/**
|
|
|
|
* GstVideoRate:average-period:
|
|
|
|
*
|
|
|
|
* Arrange for maximum framerate by dropping frames beyond a certain framerate,
|
|
|
|
* where the framerate is calculated using a moving average over the
|
|
|
|
* configured.
|
|
|
|
*/
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_AVERAGE_PERIOD,
|
2011-05-02 09:43:38 +00:00
|
|
|
g_param_spec_uint64 ("average-period", "Period over which to average",
|
|
|
|
"Period over which to average the framerate (in ns) (0 = disabled)",
|
|
|
|
0, G_MAXINT64, DEFAULT_AVERAGE_PERIOD,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
|
|
|
2011-09-19 17:26:04 +00:00
|
|
|
/**
|
|
|
|
* GstVideoRate:max-rate:
|
|
|
|
*
|
|
|
|
* maximum framerate to pass through
|
|
|
|
*/
|
2011-11-24 13:41:13 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_MAX_RATE,
|
2011-09-19 17:26:04 +00:00
|
|
|
g_param_spec_int ("max-rate", "maximum framerate",
|
|
|
|
"Maximum framerate allowed to pass through "
|
|
|
|
"(in frames per second, implies drop-only)",
|
|
|
|
1, G_MAXINT, DEFAULT_MAX_RATE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
2011-09-23 16:27:11 +00:00
|
|
|
|
2013-09-17 15:42:05 +00:00
|
|
|
/**
|
|
|
|
* GstVideoRate:rate:
|
|
|
|
*
|
|
|
|
* Factor of speed for frame displaying
|
|
|
|
*
|
|
|
|
* Since: 1.12
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_RATE,
|
|
|
|
g_param_spec_double ("rate", "Rate",
|
|
|
|
"Factor of speed for frame displaying", 0.0, G_MAXDOUBLE,
|
|
|
|
DEFAULT_RATE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
|
|
|
|
GST_PARAM_MUTABLE_READY));
|
|
|
|
|
2012-04-09 23:45:16 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
2011-09-06 13:24:32 +00:00
|
|
|
"Video rate adjuster", "Filter/Effect/Video",
|
|
|
|
"Drops/duplicates/adjusts timestamps on video frames to make a perfect stream",
|
|
|
|
"Wim Taymans <wim@fluendo.com>");
|
2005-05-09 14:33:05 +00:00
|
|
|
|
2016-03-03 07:46:24 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_video_rate_sink_template);
|
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_video_rate_src_template);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 15:47:49 +00:00
|
|
|
static void
|
|
|
|
gst_value_fraction_get_extremes (const GValue * v,
|
|
|
|
gint * min_num, gint * min_denom, gint * max_num, gint * max_denom)
|
|
|
|
{
|
|
|
|
if (GST_VALUE_HOLDS_FRACTION (v)) {
|
|
|
|
*min_num = *max_num = gst_value_get_fraction_numerator (v);
|
|
|
|
*min_denom = *max_denom = gst_value_get_fraction_denominator (v);
|
|
|
|
} else if (GST_VALUE_HOLDS_FRACTION_RANGE (v)) {
|
|
|
|
const GValue *min, *max;
|
|
|
|
|
|
|
|
min = gst_value_get_fraction_range_min (v);
|
|
|
|
*min_num = gst_value_get_fraction_numerator (min);
|
|
|
|
*min_denom = gst_value_get_fraction_denominator (min);
|
|
|
|
|
|
|
|
max = gst_value_get_fraction_range_max (v);
|
|
|
|
*max_num = gst_value_get_fraction_numerator (max);
|
|
|
|
*max_denom = gst_value_get_fraction_denominator (max);
|
|
|
|
} else if (GST_VALUE_HOLDS_LIST (v)) {
|
|
|
|
gint min_n = G_MAXINT, min_d = 1, max_n = 0, max_d = 1;
|
|
|
|
int i, n;
|
|
|
|
|
|
|
|
*min_num = G_MAXINT;
|
|
|
|
*min_denom = 1;
|
|
|
|
*max_num = 0;
|
|
|
|
*max_denom = 1;
|
|
|
|
|
|
|
|
n = gst_value_list_get_size (v);
|
|
|
|
|
|
|
|
g_assert (n > 0);
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
const GValue *t = gst_value_list_get_value (v, i);
|
|
|
|
|
|
|
|
gst_value_fraction_get_extremes (t, &min_n, &min_d, &max_n, &max_d);
|
|
|
|
if (gst_util_fraction_compare (min_n, min_d, *min_num, *min_denom) < 0) {
|
|
|
|
*min_num = min_n;
|
|
|
|
*min_denom = min_d;
|
|
|
|
}
|
2005-05-09 14:33:05 +00:00
|
|
|
|
2011-09-01 15:47:49 +00:00
|
|
|
if (gst_util_fraction_compare (max_n, max_d, *max_num, *max_denom) > 0) {
|
|
|
|
*max_num = max_n;
|
|
|
|
*max_denom = max_d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_warning ("Unknown type for framerate");
|
|
|
|
*min_num = 0;
|
|
|
|
*min_denom = 1;
|
|
|
|
*max_num = G_MAXINT;
|
|
|
|
*max_denom = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-19 17:26:04 +00:00
|
|
|
/* Clamp the framerate in a caps structure to be a smaller range then
|
|
|
|
* [1...max_rate], otherwise return false */
|
|
|
|
static gboolean
|
|
|
|
gst_video_max_rate_clamp_structure (GstStructure * s, gint maxrate,
|
|
|
|
gint * min_num, gint * min_denom, gint * max_num, gint * max_denom)
|
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
if (!gst_structure_has_field (s, "framerate")) {
|
|
|
|
/* No framerate field implies any framerate, clamping would result in
|
|
|
|
* [1..max_rate] so not a real subset */
|
|
|
|
goto out;
|
|
|
|
} else {
|
|
|
|
const GValue *v;
|
|
|
|
GValue intersection = { 0, };
|
|
|
|
GValue clamp = { 0, };
|
|
|
|
gint tmp_num, tmp_denom;
|
|
|
|
|
|
|
|
g_value_init (&clamp, GST_TYPE_FRACTION_RANGE);
|
|
|
|
gst_value_set_fraction_range_full (&clamp, 0, 1, maxrate, 1);
|
|
|
|
|
|
|
|
v = gst_structure_get_value (s, "framerate");
|
|
|
|
ret = gst_value_intersect (&intersection, v, &clamp);
|
|
|
|
g_value_unset (&clamp);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
gst_value_fraction_get_extremes (&intersection,
|
|
|
|
min_num, min_denom, max_num, max_denom);
|
|
|
|
|
|
|
|
gst_value_fraction_get_extremes (v,
|
|
|
|
&tmp_num, &tmp_denom, max_num, max_denom);
|
|
|
|
|
|
|
|
if (gst_util_fraction_compare (*max_num, *max_denom, maxrate, 1) > 0) {
|
|
|
|
*max_num = maxrate;
|
|
|
|
*max_denom = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_structure_take_value (s, "framerate", &intersection);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
2005-05-09 14:33:05 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
static GstCaps *
|
|
|
|
gst_video_rate_transform_caps (GstBaseTransform * trans,
|
2011-09-06 13:24:32 +00:00
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * filter)
|
2005-05-09 14:33:05 +00:00
|
|
|
{
|
2011-09-01 15:47:49 +00:00
|
|
|
GstVideoRate *videorate = GST_VIDEO_RATE (trans);
|
2011-08-23 08:11:52 +00:00
|
|
|
GstCaps *ret;
|
2012-01-02 16:28:12 +00:00
|
|
|
GstStructure *s, *s1, *s2, *s3 = NULL;
|
2011-09-19 17:26:04 +00:00
|
|
|
int maxrate = g_atomic_int_get (&videorate->max_rate);
|
2012-01-02 16:28:12 +00:00
|
|
|
gint i;
|
|
|
|
|
|
|
|
ret = gst_caps_new_empty ();
|
|
|
|
|
|
|
|
for (i = 0; i < gst_caps_get_size (caps); i++) {
|
|
|
|
s = gst_caps_get_structure (caps, i);
|
|
|
|
|
|
|
|
s1 = gst_structure_copy (s);
|
|
|
|
|
2015-05-28 10:51:35 +00:00
|
|
|
if (videorate->updating_caps && direction == GST_PAD_SINK) {
|
2014-12-09 12:18:42 +00:00
|
|
|
GST_INFO_OBJECT (trans,
|
|
|
|
"Only updating caps %" GST_PTR_FORMAT " with framerate" " %d/%d",
|
|
|
|
caps, videorate->to_rate_numerator, videorate->to_rate_denominator);
|
|
|
|
|
|
|
|
gst_structure_set (s1, "framerate", GST_TYPE_FRACTION,
|
|
|
|
videorate->to_rate_numerator, videorate->to_rate_denominator, NULL);
|
|
|
|
ret = gst_caps_merge_structure (ret, s1);
|
|
|
|
|
|
|
|
continue;
|
2015-04-03 23:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s2 = gst_structure_copy (s);
|
|
|
|
s3 = NULL;
|
|
|
|
|
|
|
|
if (videorate->drop_only) {
|
2012-01-02 16:28:12 +00:00
|
|
|
gint min_num = 0, min_denom = 1;
|
|
|
|
gint max_num = G_MAXINT, max_denom = 1;
|
|
|
|
|
|
|
|
/* Clamp the caps to our maximum rate as the first caps if possible */
|
|
|
|
if (!gst_video_max_rate_clamp_structure (s1, maxrate,
|
|
|
|
&min_num, &min_denom, &max_num, &max_denom)) {
|
|
|
|
min_num = 0;
|
|
|
|
min_denom = 1;
|
|
|
|
max_num = maxrate;
|
|
|
|
max_denom = 1;
|
|
|
|
|
|
|
|
/* clamp wouldn't be a real subset of 1..maxrate, in this case the sink
|
|
|
|
* caps should become [1..maxrate], [1..maxint] and the src caps just
|
|
|
|
* [1..maxrate]. In case there was a caps incompatibility things will
|
|
|
|
* explode later as appropriate :)
|
|
|
|
*
|
|
|
|
* In case [X..maxrate] == [X..maxint], skip as we'll set it later
|
|
|
|
*/
|
|
|
|
if (direction == GST_PAD_SRC && maxrate != G_MAXINT)
|
|
|
|
gst_structure_set (s1, "framerate", GST_TYPE_FRACTION_RANGE,
|
|
|
|
min_num, min_denom, maxrate, 1, NULL);
|
|
|
|
else {
|
|
|
|
gst_structure_free (s1);
|
|
|
|
s1 = NULL;
|
|
|
|
}
|
|
|
|
}
|
2010-01-27 18:07:47 +00:00
|
|
|
|
2012-01-02 16:28:12 +00:00
|
|
|
if (direction == GST_PAD_SRC) {
|
|
|
|
/* We can accept anything as long as it's at least the minimal framerate
|
|
|
|
* the the sink needs */
|
|
|
|
gst_structure_set (s2, "framerate", GST_TYPE_FRACTION_RANGE,
|
|
|
|
min_num, min_denom, G_MAXINT, 1, NULL);
|
|
|
|
|
|
|
|
/* Also allow unknown framerate, if it isn't already */
|
|
|
|
if (min_num != 0 || min_denom != 1) {
|
|
|
|
s3 = gst_structure_copy (s);
|
|
|
|
gst_structure_set (s3, "framerate", GST_TYPE_FRACTION, 0, 1, NULL);
|
|
|
|
}
|
|
|
|
} else if (max_num != 0 || max_denom != 1) {
|
|
|
|
/* We can provide everything upto the maximum framerate at the src */
|
|
|
|
gst_structure_set (s2, "framerate", GST_TYPE_FRACTION_RANGE,
|
|
|
|
0, 1, max_num, max_denom, NULL);
|
|
|
|
}
|
|
|
|
} else if (direction == GST_PAD_SINK) {
|
|
|
|
gint min_num = 0, min_denom = 1;
|
|
|
|
gint max_num = G_MAXINT, max_denom = 1;
|
|
|
|
|
|
|
|
if (!gst_video_max_rate_clamp_structure (s1, maxrate,
|
|
|
|
&min_num, &min_denom, &max_num, &max_denom)) {
|
|
|
|
gst_structure_free (s1);
|
|
|
|
s1 = NULL;
|
2011-09-01 15:47:49 +00:00
|
|
|
}
|
2012-01-02 16:28:12 +00:00
|
|
|
gst_structure_set (s2, "framerate", GST_TYPE_FRACTION_RANGE, 0, 1,
|
|
|
|
maxrate, 1, NULL);
|
|
|
|
} else {
|
|
|
|
/* set the framerate as a range */
|
|
|
|
gst_structure_set (s2, "framerate", GST_TYPE_FRACTION_RANGE, 0, 1,
|
|
|
|
G_MAXINT, 1, NULL);
|
2011-09-01 15:47:49 +00:00
|
|
|
}
|
2012-01-02 16:28:12 +00:00
|
|
|
if (s1 != NULL)
|
2015-03-10 01:35:59 +00:00
|
|
|
ret = gst_caps_merge_structure_full (ret, s1,
|
|
|
|
gst_caps_features_copy (gst_caps_get_features (caps, i)));
|
|
|
|
ret = gst_caps_merge_structure_full (ret, s2,
|
|
|
|
gst_caps_features_copy (gst_caps_get_features (caps, i)));
|
2012-01-02 16:28:12 +00:00
|
|
|
if (s3 != NULL)
|
2015-03-10 01:35:59 +00:00
|
|
|
ret = gst_caps_merge_structure_full (ret, s3,
|
|
|
|
gst_caps_features_copy (gst_caps_get_features (caps, i)));
|
2011-09-01 15:47:49 +00:00
|
|
|
}
|
2012-01-02 16:28:12 +00:00
|
|
|
if (filter) {
|
|
|
|
GstCaps *intersection;
|
2011-09-01 15:47:49 +00:00
|
|
|
|
2012-01-02 16:28:12 +00:00
|
|
|
intersection =
|
|
|
|
gst_caps_intersect_full (filter, ret, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (ret);
|
|
|
|
ret = intersection;
|
|
|
|
}
|
2011-08-23 08:11:52 +00:00
|
|
|
return ret;
|
2005-05-09 14:33:05 +00:00
|
|
|
}
|
|
|
|
|
2012-02-22 11:27:49 +00:00
|
|
|
static GstCaps *
|
2011-08-23 08:11:52 +00:00
|
|
|
gst_video_rate_fixate_caps (GstBaseTransform * trans,
|
|
|
|
GstPadDirection direction, GstCaps * caps, GstCaps * othercaps)
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
{
|
2011-08-23 08:11:52 +00:00
|
|
|
GstStructure *s;
|
|
|
|
gint num, denom;
|
2015-08-13 16:52:17 +00:00
|
|
|
const GValue *par;
|
2011-05-16 10:01:14 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
s = gst_caps_get_structure (caps, 0);
|
|
|
|
if (G_UNLIKELY (!gst_structure_get_fraction (s, "framerate", &num, &denom)))
|
2012-02-22 11:27:49 +00:00
|
|
|
return othercaps;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2012-03-11 18:04:41 +00:00
|
|
|
othercaps = gst_caps_truncate (othercaps);
|
2012-02-22 11:27:49 +00:00
|
|
|
othercaps = gst_caps_make_writable (othercaps);
|
2011-08-23 08:11:52 +00:00
|
|
|
s = gst_caps_get_structure (othercaps, 0);
|
|
|
|
gst_structure_fixate_field_nearest_fraction (s, "framerate", num, denom);
|
2012-02-22 11:27:49 +00:00
|
|
|
|
2015-08-13 16:52:17 +00:00
|
|
|
if ((par = gst_structure_get_value (s, "pixel-aspect-ratio")))
|
|
|
|
gst_structure_fixate_field_nearest_fraction (s, "pixel-aspect-ratio", 1, 1);
|
|
|
|
|
2012-02-22 11:27:49 +00:00
|
|
|
return othercaps;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
static gboolean
|
2011-08-23 08:11:52 +00:00
|
|
|
gst_video_rate_setcaps (GstBaseTransform * trans, GstCaps * in_caps,
|
|
|
|
GstCaps * out_caps)
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
{
|
2011-09-06 13:24:32 +00:00
|
|
|
GstVideoRate *videorate = GST_VIDEO_RATE (trans);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
GstStructure *structure;
|
2005-05-09 14:03:20 +00:00
|
|
|
gboolean ret = TRUE;
|
Convert elements to use fractions for their framerate.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
(gst_visual_chain):
* ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
* ext/theora/theoradec.c: (theora_handle_type_packet):
* ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
(theora_enc_chain):
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
* gst-libs/gst/video/video.c: (gst_video_frame_rate):
* gst-libs/gst/video/video.h:
* gst/ffmpegcolorspace/avcodec.h:
* gst/ffmpegcolorspace/gstffmpegcodecmap.c:
(gst_ffmpeg_caps_to_pixfmt):
* gst/ffmpegcolorspace/gstffmpegcolorspace.c:
(gst_ffmpegcsp_set_caps):
* gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
(gst_videorate_setcaps), (gst_videorate_blank_data),
(gst_videorate_chain):
* gst/videotestsrc/gstvideotestsrc.c:
(gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
(gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
(gst_videotestsrc_event), (gst_videotestsrc_create):
* gst/videotestsrc/gstvideotestsrc.h:
* sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
(gst_ximagesink_setcaps), (gst_ximagesink_change_state),
(gst_ximagesink_get_times), (gst_ximagesink_init):
* sys/ximage/ximagesink.h:
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
(gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
(gst_xvimagesink_get_times), (gst_xvimagesink_init):
* sys/xvimage/xvimagesink.h:
Convert elements to use fractions for their framerate.
V4L elements to come later tonight.
2005-11-22 16:08:37 +00:00
|
|
|
gint rate_numerator, rate_denominator;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
GST_DEBUG_OBJECT (trans, "setcaps called in: %" GST_PTR_FORMAT
|
|
|
|
" out: %" GST_PTR_FORMAT, in_caps, out_caps);
|
2007-04-12 15:00:03 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
structure = gst_caps_get_structure (in_caps, 0);
|
Updates for API changes
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
(gst_visual_chain):
* ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
* gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
(gst_videorate_chain):
* gst/videotestsrc/gstvideotestsrc.c:
(gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
(gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
* sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
(gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
Updates for API changes
2005-11-23 13:25:54 +00:00
|
|
|
if (!gst_structure_get_fraction (structure, "framerate",
|
|
|
|
&rate_numerator, &rate_denominator))
|
2006-03-02 16:47:34 +00:00
|
|
|
goto no_framerate;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate->from_rate_numerator = rate_numerator;
|
|
|
|
videorate->from_rate_denominator = rate_denominator;
|
2007-04-12 15:00:03 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
structure = gst_caps_get_structure (out_caps, 0);
|
Updates for API changes
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
(gst_visual_chain):
* ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
* gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
(gst_videorate_chain):
* gst/videotestsrc/gstvideotestsrc.c:
(gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
(gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
* sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
(gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
Updates for API changes
2005-11-23 13:25:54 +00:00
|
|
|
if (!gst_structure_get_fraction (structure, "framerate",
|
|
|
|
&rate_numerator, &rate_denominator))
|
2006-03-02 16:47:34 +00:00
|
|
|
goto no_framerate;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-06-07 09:55:36 +00:00
|
|
|
/* out_frame_count is scaled by the frame rate caps when calculating next_ts.
|
|
|
|
* when the frame rate caps change, we must update base_ts and reset
|
|
|
|
* out_frame_count */
|
|
|
|
if (videorate->to_rate_numerator) {
|
|
|
|
videorate->base_ts +=
|
2017-05-02 11:32:02 +00:00
|
|
|
gst_util_uint64_scale (videorate->out_frame_count,
|
2011-06-07 09:55:36 +00:00
|
|
|
videorate->to_rate_denominator * GST_SECOND,
|
|
|
|
videorate->to_rate_numerator);
|
|
|
|
}
|
|
|
|
videorate->out_frame_count = 0;
|
|
|
|
videorate->to_rate_numerator = rate_numerator;
|
|
|
|
videorate->to_rate_denominator = rate_denominator;
|
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
if (rate_numerator)
|
|
|
|
videorate->wanted_diff = gst_util_uint64_scale_int (GST_SECOND,
|
|
|
|
rate_denominator, rate_numerator);
|
|
|
|
else
|
|
|
|
videorate->wanted_diff = 0;
|
2011-06-07 09:55:36 +00:00
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
done:
|
2007-03-23 12:32:33 +00:00
|
|
|
/* After a setcaps, our caps may have changed. In that case, we can't use
|
|
|
|
* the old buffer, if there was one (it might have different dimensions) */
|
2010-05-21 17:16:07 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "swapping old buffers");
|
2007-04-12 15:00:03 +00:00
|
|
|
gst_video_rate_swap_prev (videorate, NULL, GST_CLOCK_TIME_NONE);
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate->last_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
videorate->average = 0;
|
2007-03-23 12:32:33 +00:00
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
return ret;
|
2006-03-02 16:47:34 +00:00
|
|
|
|
|
|
|
no_framerate:
|
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (videorate, "no framerate specified");
|
|
|
|
ret = FALSE;
|
|
|
|
goto done;
|
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
2004-12-19 13:16:24 +00:00
|
|
|
static void
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_reset (GstVideoRate * videorate)
|
2004-12-19 13:16:24 +00:00
|
|
|
{
|
2010-05-21 17:16:07 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "resetting internal variables");
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2004-12-19 13:16:24 +00:00
|
|
|
videorate->in = 0;
|
|
|
|
videorate->out = 0;
|
2011-01-06 12:08:53 +00:00
|
|
|
videorate->base_ts = 0;
|
|
|
|
videorate->out_frame_count = 0;
|
2004-12-19 13:16:24 +00:00
|
|
|
videorate->drop = 0;
|
|
|
|
videorate->dup = 0;
|
2007-03-23 12:32:33 +00:00
|
|
|
videorate->next_ts = GST_CLOCK_TIME_NONE;
|
2009-04-30 14:37:38 +00:00
|
|
|
videorate->last_ts = GST_CLOCK_TIME_NONE;
|
2009-04-28 09:32:49 +00:00
|
|
|
videorate->discont = TRUE;
|
2011-05-02 09:43:38 +00:00
|
|
|
videorate->average = 0;
|
2014-12-09 12:18:42 +00:00
|
|
|
videorate->force_variable_rate = FALSE;
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_swap_prev (videorate, NULL, 0);
|
2005-11-16 17:56:40 +00:00
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_segment_init (&videorate->segment, GST_FORMAT_TIME);
|
2004-12-19 13:16:24 +00:00
|
|
|
}
|
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
static void
|
2011-04-19 09:35:53 +00:00
|
|
|
gst_video_rate_init (GstVideoRate * videorate)
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
{
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_reset (videorate);
|
2004-06-22 11:19:46 +00:00
|
|
|
videorate->silent = DEFAULT_SILENT;
|
2004-06-22 11:57:22 +00:00
|
|
|
videorate->new_pref = DEFAULT_NEW_PREF;
|
2011-04-29 12:58:02 +00:00
|
|
|
videorate->drop_only = DEFAULT_DROP_ONLY;
|
2011-05-02 09:43:38 +00:00
|
|
|
videorate->average_period = DEFAULT_AVERAGE_PERIOD;
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate->average_period_set = DEFAULT_AVERAGE_PERIOD;
|
2011-09-19 17:26:04 +00:00
|
|
|
videorate->max_rate = DEFAULT_MAX_RATE;
|
2013-09-17 15:42:05 +00:00
|
|
|
videorate->rate = DEFAULT_RATE;
|
2006-04-06 11:40:45 +00:00
|
|
|
|
|
|
|
videorate->from_rate_numerator = 0;
|
|
|
|
videorate->from_rate_denominator = 0;
|
|
|
|
videorate->to_rate_numerator = 0;
|
|
|
|
videorate->to_rate_denominator = 0;
|
2011-08-23 08:11:52 +00:00
|
|
|
|
|
|
|
gst_base_transform_set_gap_aware (GST_BASE_TRANSFORM (videorate), TRUE);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 11:16:42 +00:00
|
|
|
/* @outbuf: (transfer full) needs to be writable */
|
2006-03-02 16:47:34 +00:00
|
|
|
static GstFlowReturn
|
2017-04-04 11:16:42 +00:00
|
|
|
gst_video_rate_push_buffer (GstVideoRate * videorate, GstBuffer * outbuf,
|
|
|
|
gboolean duplicate, GstClockTime next_intime)
|
2006-03-02 16:47:34 +00:00
|
|
|
{
|
|
|
|
GstFlowReturn res;
|
|
|
|
GstClockTime push_ts;
|
|
|
|
|
2007-03-29 11:24:47 +00:00
|
|
|
GST_BUFFER_OFFSET (outbuf) = videorate->out;
|
|
|
|
GST_BUFFER_OFFSET_END (outbuf) = videorate->out + 1;
|
|
|
|
|
2009-04-28 09:32:49 +00:00
|
|
|
if (videorate->discont) {
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
|
|
|
|
videorate->discont = FALSE;
|
|
|
|
} else
|
|
|
|
GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DISCONT);
|
|
|
|
|
2010-08-20 10:03:44 +00:00
|
|
|
if (duplicate)
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_GAP);
|
|
|
|
else
|
|
|
|
GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_GAP);
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
/* this is the timestamp we put on the buffer */
|
|
|
|
push_ts = videorate->next_ts;
|
|
|
|
|
|
|
|
videorate->out++;
|
2011-01-06 12:08:53 +00:00
|
|
|
videorate->out_frame_count++;
|
2016-08-18 09:03:39 +00:00
|
|
|
if (videorate->segment.rate < 0.0) {
|
|
|
|
if (videorate->to_rate_numerator) {
|
|
|
|
/* interpolate next expected timestamp in the segment */
|
2017-05-02 11:32:02 +00:00
|
|
|
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->next_ts =
|
|
|
|
videorate->segment.base + videorate->segment.stop -
|
|
|
|
videorate->base_ts -
|
2017-05-02 11:32:02 +00:00
|
|
|
gst_util_uint64_scale (videorate->out_frame_count,
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->to_rate_denominator * GST_SECOND,
|
|
|
|
videorate->to_rate_numerator);
|
|
|
|
GST_BUFFER_DURATION (outbuf) = push_ts - videorate->next_ts;
|
|
|
|
} else if (next_intime != GST_CLOCK_TIME_NONE) {
|
|
|
|
videorate->next_ts = next_intime;
|
|
|
|
} else {
|
|
|
|
GST_FIXME_OBJECT (videorate, "No next intime for reverse playback");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (videorate->to_rate_numerator) {
|
|
|
|
/* interpolate next expected timestamp in the segment */
|
|
|
|
videorate->next_ts =
|
|
|
|
videorate->segment.base + videorate->segment.start +
|
|
|
|
videorate->base_ts +
|
|
|
|
gst_util_uint64_scale (videorate->out_frame_count,
|
|
|
|
videorate->to_rate_denominator * GST_SECOND,
|
|
|
|
videorate->to_rate_numerator);
|
|
|
|
GST_BUFFER_DURATION (outbuf) = videorate->next_ts - push_ts;
|
|
|
|
} else if (GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DURATION (outbuf))) {
|
|
|
|
videorate->next_ts =
|
|
|
|
GST_BUFFER_PTS (outbuf) + GST_BUFFER_DURATION (outbuf);
|
|
|
|
} else {
|
|
|
|
/* There must always be a valid duration on prevbuf if rate > 0,
|
|
|
|
* it is ensured in the transform_ip function */
|
|
|
|
GST_FIXME_OBJECT (videorate, "No buffer duration known");
|
|
|
|
}
|
2006-03-02 16:47:34 +00:00
|
|
|
}
|
2006-09-28 11:46:26 +00:00
|
|
|
|
2011-04-29 12:58:02 +00:00
|
|
|
/* We do not need to update time in VFR (variable frame rate) mode */
|
|
|
|
if (!videorate->drop_only) {
|
|
|
|
/* adapt for looping, bring back to time in current segment. */
|
2011-05-16 15:14:08 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = push_ts - videorate->segment.base;
|
2011-04-29 12:58:02 +00:00
|
|
|
}
|
2006-09-28 11:46:26 +00:00
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
GST_LOG_OBJECT (videorate,
|
|
|
|
"old is best, dup, pushing buffer outgoing ts %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (push_ts));
|
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
res = gst_pad_push (GST_BASE_TRANSFORM_SRC_PAD (videorate), outbuf);
|
2006-03-02 16:47:34 +00:00
|
|
|
|
|
|
|
return res;
|
2017-04-04 11:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* flush the oldest buffer */
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_video_rate_flush_prev (GstVideoRate * videorate, gboolean duplicate,
|
|
|
|
GstClockTime next_intime)
|
|
|
|
{
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
if (!videorate->prevbuf)
|
|
|
|
goto eos_before_buffers;
|
|
|
|
|
|
|
|
outbuf = gst_buffer_ref (videorate->prevbuf);
|
|
|
|
/* make sure we can write to the metadata */
|
|
|
|
outbuf = gst_buffer_make_writable (outbuf);
|
|
|
|
|
|
|
|
return gst_video_rate_push_buffer (videorate, outbuf, duplicate, next_intime);
|
2006-03-02 16:47:34 +00:00
|
|
|
|
2006-04-04 11:15:00 +00:00
|
|
|
/* WARNINGS */
|
|
|
|
eos_before_buffers:
|
|
|
|
{
|
|
|
|
GST_INFO_OBJECT (videorate, "got EOS before any buffer was received");
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
2006-03-02 16:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_video_rate_swap_prev (GstVideoRate * videorate, GstBuffer * buffer,
|
|
|
|
gint64 time)
|
|
|
|
{
|
2006-04-28 14:49:22 +00:00
|
|
|
GST_LOG_OBJECT (videorate, "swap_prev: storing buffer %p in prev", buffer);
|
2006-03-02 16:47:34 +00:00
|
|
|
if (videorate->prevbuf)
|
|
|
|
gst_buffer_unref (videorate->prevbuf);
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate->prevbuf = buffer != NULL ? gst_buffer_ref (buffer) : NULL;
|
2006-03-02 16:47:34 +00:00
|
|
|
videorate->prev_ts = time;
|
|
|
|
}
|
|
|
|
|
2010-10-07 19:37:10 +00:00
|
|
|
static void
|
|
|
|
gst_video_rate_notify_drop (GstVideoRate * videorate)
|
|
|
|
{
|
|
|
|
g_object_notify_by_pspec ((GObject *) videorate, pspec_drop);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_video_rate_notify_duplicate (GstVideoRate * videorate)
|
|
|
|
{
|
|
|
|
g_object_notify_by_pspec ((GObject *) videorate, pspec_duplicate);
|
|
|
|
}
|
|
|
|
|
2008-05-28 14:49:24 +00:00
|
|
|
#define MAGIC_LIMIT 25
|
2006-10-10 12:49:03 +00:00
|
|
|
static gboolean
|
2011-09-06 13:24:32 +00:00
|
|
|
gst_video_rate_sink_event (GstBaseTransform * trans, GstEvent * event)
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoRate *videorate;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate = GST_VIDEO_RATE (trans);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2011-05-16 11:48:11 +00:00
|
|
|
case GST_EVENT_SEGMENT:
|
2005-05-09 14:03:20 +00:00
|
|
|
{
|
2013-09-17 15:42:05 +00:00
|
|
|
GstSegment segment;
|
|
|
|
gint seqnum;
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2013-09-17 15:42:05 +00:00
|
|
|
gst_event_copy_segment (event, &segment);
|
|
|
|
if (segment.format != GST_FORMAT_TIME)
|
2006-03-02 16:47:34 +00:00
|
|
|
goto format_error;
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2006-09-28 11:46:26 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "handle NEWSEGMENT");
|
|
|
|
|
2008-05-28 14:49:24 +00:00
|
|
|
/* close up the previous segment, if appropriate */
|
2011-05-16 11:48:11 +00:00
|
|
|
if (videorate->prevbuf) {
|
2008-05-28 14:49:24 +00:00
|
|
|
gint count = 0;
|
|
|
|
GstFlowReturn res;
|
|
|
|
|
|
|
|
res = GST_FLOW_OK;
|
|
|
|
/* fill up to the end of current segment,
|
|
|
|
* or only send out the stored buffer if there is no specific stop.
|
|
|
|
* regardless, prevent going loopy in strange cases */
|
2016-04-03 08:40:50 +00:00
|
|
|
while (res == GST_FLOW_OK && count <= MAGIC_LIMIT
|
|
|
|
&& !videorate->drop_only
|
2016-08-18 09:03:39 +00:00
|
|
|
&& ((videorate->segment.rate > 0.0
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->segment.stop)
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->next_ts)
|
2016-04-03 08:40:50 +00:00
|
|
|
&& videorate->next_ts - videorate->segment.base <
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->segment.stop) || (videorate->segment.rate < 0.0
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->segment.start)
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->next_ts)
|
|
|
|
&& videorate->next_ts - videorate->segment.base >=
|
|
|
|
videorate->segment.start)
|
2008-05-28 14:49:24 +00:00
|
|
|
|| count < 1)) {
|
2016-08-18 09:03:39 +00:00
|
|
|
res =
|
|
|
|
gst_video_rate_flush_prev (videorate, count > 0,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2008-05-28 14:49:24 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (count > 1) {
|
|
|
|
videorate->dup += count - 1;
|
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_duplicate (videorate);
|
2008-05-28 14:49:24 +00:00
|
|
|
}
|
|
|
|
/* clean up for the new one; _chain will resume from the new start */
|
|
|
|
gst_video_rate_swap_prev (videorate, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2013-05-08 18:31:00 +00:00
|
|
|
videorate->base_ts = 0;
|
|
|
|
videorate->out_frame_count = 0;
|
|
|
|
videorate->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
/* We just want to update the accumulated stream_time */
|
|
|
|
|
2013-09-17 15:42:05 +00:00
|
|
|
segment.start = (gint64) (segment.start / videorate->rate);
|
|
|
|
segment.position = (gint64) (segment.position / videorate->rate);
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (segment.stop))
|
|
|
|
segment.stop = (gint64) (segment.stop / videorate->rate);
|
|
|
|
segment.time = (gint64) (segment.time / videorate->rate);
|
|
|
|
|
|
|
|
gst_segment_copy_into (&segment, &videorate->segment);
|
2006-09-28 11:46:26 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "updated segment: %" GST_SEGMENT_FORMAT,
|
|
|
|
&videorate->segment);
|
2013-09-17 15:42:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
seqnum = gst_event_get_seqnum (event);
|
|
|
|
gst_event_unref (event);
|
|
|
|
event = gst_event_new_segment (&segment);
|
|
|
|
gst_event_set_seqnum (event, seqnum);
|
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
break;
|
2004-12-19 13:16:24 +00:00
|
|
|
}
|
2017-04-07 18:41:57 +00:00
|
|
|
case GST_EVENT_SEGMENT_DONE:
|
2010-09-01 09:33:12 +00:00
|
|
|
case GST_EVENT_EOS:{
|
|
|
|
gint count = 0;
|
|
|
|
GstFlowReturn res = GST_FLOW_OK;
|
|
|
|
|
2017-04-07 18:41:57 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "Got %s",
|
|
|
|
gst_event_type_get_name (GST_EVENT_TYPE (event)));
|
2010-09-01 09:33:12 +00:00
|
|
|
|
|
|
|
/* If the segment has a stop position, fill the segment */
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (videorate->segment.stop)) {
|
|
|
|
/* fill up to the end of current segment,
|
|
|
|
* or only send out the stored buffer if there is no specific stop.
|
|
|
|
* regardless, prevent going loopy in strange cases */
|
2016-04-03 08:40:50 +00:00
|
|
|
while (res == GST_FLOW_OK && count <= MAGIC_LIMIT
|
|
|
|
&& !videorate->drop_only
|
2016-08-18 09:03:39 +00:00
|
|
|
&& ((videorate->segment.rate > 0.0
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->segment.stop)
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->next_ts)
|
|
|
|
&& videorate->next_ts - videorate->segment.base <
|
|
|
|
videorate->segment.stop) || (videorate->segment.rate < 0.0
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->segment.start)
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->next_ts)
|
|
|
|
&& videorate->next_ts - videorate->segment.base >=
|
|
|
|
videorate->segment.start)
|
2010-09-01 09:33:12 +00:00
|
|
|
|| count < 1)) {
|
2016-08-18 09:03:39 +00:00
|
|
|
res =
|
|
|
|
gst_video_rate_flush_prev (videorate, count > 0,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2010-09-01 09:33:12 +00:00
|
|
|
count++;
|
|
|
|
}
|
2016-04-03 08:40:50 +00:00
|
|
|
} else if (!videorate->drop_only && videorate->prevbuf) {
|
2010-09-01 09:33:12 +00:00
|
|
|
/* Output at least one frame but if the buffer duration is valid, output
|
|
|
|
* enough frames to use the complete buffer duration */
|
|
|
|
if (GST_BUFFER_DURATION_IS_VALID (videorate->prevbuf)) {
|
|
|
|
GstClockTime end_ts =
|
|
|
|
videorate->next_ts + GST_BUFFER_DURATION (videorate->prevbuf);
|
|
|
|
|
|
|
|
while (res == GST_FLOW_OK && count <= MAGIC_LIMIT &&
|
2016-08-18 09:03:39 +00:00
|
|
|
((videorate->segment.rate > 0.0
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->segment.stop)
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (videorate->next_ts)
|
|
|
|
&& videorate->next_ts - videorate->segment.base < end_ts)
|
2010-09-01 09:33:12 +00:00
|
|
|
|| count < 1)) {
|
2016-08-18 09:03:39 +00:00
|
|
|
res =
|
|
|
|
gst_video_rate_flush_prev (videorate, count > 0,
|
|
|
|
GST_CLOCK_TIME_NONE);
|
2010-09-01 09:33:12 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
} else {
|
2016-08-18 09:03:39 +00:00
|
|
|
res =
|
|
|
|
gst_video_rate_flush_prev (videorate, FALSE, GST_CLOCK_TIME_NONE);
|
2010-09-01 09:33:12 +00:00
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 1) {
|
|
|
|
videorate->dup += count - 1;
|
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_duplicate (videorate);
|
2010-09-01 09:33:12 +00:00
|
|
|
} else if (count == 0) {
|
|
|
|
videorate->drop++;
|
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_drop (videorate);
|
2010-09-01 09:33:12 +00:00
|
|
|
}
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
break;
|
2010-09-01 09:33:12 +00:00
|
|
|
}
|
2005-11-16 17:56:40 +00:00
|
|
|
case GST_EVENT_FLUSH_STOP:
|
2006-03-02 16:47:34 +00:00
|
|
|
/* also resets the segment */
|
2006-04-28 14:19:49 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "Got FLUSH_STOP");
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_reset (videorate);
|
|
|
|
break;
|
2013-07-28 21:38:06 +00:00
|
|
|
case GST_EVENT_GAP:
|
|
|
|
/* no gaps after videorate, ignore the event */
|
|
|
|
gst_event_unref (event);
|
|
|
|
return TRUE;
|
2005-05-09 14:03:20 +00:00
|
|
|
default:
|
|
|
|
break;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
2005-11-16 17:56:40 +00:00
|
|
|
|
2012-01-02 16:42:11 +00:00
|
|
|
return GST_BASE_TRANSFORM_CLASS (parent_class)->sink_event (trans, event);
|
2006-03-02 16:47:34 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
format_error:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (videorate,
|
|
|
|
"Got segment but doesn't have GST_FORMAT_TIME value");
|
2011-08-23 08:11:52 +00:00
|
|
|
return FALSE;
|
2006-03-02 16:47:34 +00:00
|
|
|
}
|
2005-05-09 14:03:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-17 15:42:05 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_rate_src_event (GstBaseTransform * trans, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstVideoRate *videorate;
|
|
|
|
GstPad *sinkpad;
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
|
|
|
videorate = GST_VIDEO_RATE (trans);
|
|
|
|
sinkpad = GST_BASE_TRANSFORM_SINK_PAD (trans);
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_SEEK:
|
|
|
|
{
|
|
|
|
gdouble srate;
|
|
|
|
GstSeekFlags flags;
|
|
|
|
GstSeekType start_type, stop_type;
|
|
|
|
gint64 start, stop;
|
|
|
|
gint seqnum = gst_event_get_seqnum (event);
|
|
|
|
|
|
|
|
gst_event_parse_seek (event, &srate, NULL, &flags, &start_type, &start,
|
|
|
|
&stop_type, &stop);
|
|
|
|
|
|
|
|
start = (gint64) (start * videorate->rate);
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (stop)) {
|
|
|
|
stop = (gint64) (stop * videorate->rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
event = gst_event_new_seek (srate, GST_FORMAT_TIME,
|
|
|
|
flags, start_type, start, stop_type, stop);
|
|
|
|
gst_event_set_seqnum (event, seqnum);
|
|
|
|
|
|
|
|
res = gst_pad_push_event (sinkpad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = gst_pad_push_event (sinkpad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2007-07-13 18:12:19 +00:00
|
|
|
static gboolean
|
2011-08-23 08:11:52 +00:00
|
|
|
gst_video_rate_query (GstBaseTransform * trans, GstPadDirection direction,
|
|
|
|
GstQuery * query)
|
2007-07-13 18:12:19 +00:00
|
|
|
{
|
2011-08-23 08:11:52 +00:00
|
|
|
GstVideoRate *videorate = GST_VIDEO_RATE (trans);
|
2007-07-13 18:12:19 +00:00
|
|
|
gboolean res = FALSE;
|
2011-08-23 08:11:52 +00:00
|
|
|
GstPad *otherpad;
|
2007-07-13 18:12:19 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
otherpad = (direction == GST_PAD_SRC) ?
|
|
|
|
GST_BASE_TRANSFORM_SINK_PAD (trans) : GST_BASE_TRANSFORM_SRC_PAD (trans);
|
2007-07-13 18:12:19 +00:00
|
|
|
|
2011-05-17 09:25:31 +00:00
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
2007-07-13 18:12:19 +00:00
|
|
|
case GST_QUERY_LATENCY:
|
|
|
|
{
|
|
|
|
GstClockTime min, max;
|
|
|
|
gboolean live;
|
|
|
|
guint64 latency;
|
2011-08-25 14:14:58 +00:00
|
|
|
guint64 avg_period;
|
2014-11-12 14:23:37 +00:00
|
|
|
gboolean drop_only;
|
2007-07-13 18:12:19 +00:00
|
|
|
GstPad *peer;
|
|
|
|
|
2011-08-25 14:14:58 +00:00
|
|
|
GST_OBJECT_LOCK (videorate);
|
|
|
|
avg_period = videorate->average_period_set;
|
2014-11-12 14:23:37 +00:00
|
|
|
drop_only = videorate->drop_only;
|
2011-08-25 14:14:58 +00:00
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
|
|
|
|
|
|
|
if (avg_period == 0 && (peer = gst_pad_get_peer (otherpad))) {
|
2007-07-13 18:12:19 +00:00
|
|
|
if ((res = gst_pad_query (peer, query))) {
|
2011-05-17 09:25:31 +00:00
|
|
|
gst_query_parse_latency (query, &live, &min, &max);
|
2007-07-13 18:12:19 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (videorate, "Peer latency: min %"
|
|
|
|
GST_TIME_FORMAT " max %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (min), GST_TIME_ARGS (max));
|
|
|
|
|
2014-11-12 14:23:37 +00:00
|
|
|
/* Drop only has no latency, other modes have one frame latency */
|
|
|
|
if (!drop_only && videorate->from_rate_numerator != 0) {
|
2009-04-30 14:37:38 +00:00
|
|
|
/* add latency. We don't really know since we hold on to the frames
|
|
|
|
* until we get a next frame, which can be anything. We assume
|
|
|
|
* however that this will take from_rate time. */
|
|
|
|
latency = gst_util_uint64_scale (GST_SECOND,
|
|
|
|
videorate->from_rate_denominator,
|
|
|
|
videorate->from_rate_numerator);
|
|
|
|
} else {
|
|
|
|
/* no input framerate, we don't know */
|
|
|
|
latency = 0;
|
|
|
|
}
|
2007-07-13 18:12:19 +00:00
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (videorate, "Our latency: %"
|
2007-08-10 10:08:05 +00:00
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (latency));
|
2007-07-13 18:12:19 +00:00
|
|
|
|
|
|
|
min += latency;
|
|
|
|
if (max != -1)
|
|
|
|
max += latency;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (videorate, "Calculated total latency : min %"
|
|
|
|
GST_TIME_FORMAT " max %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (min), GST_TIME_ARGS (max));
|
|
|
|
|
2011-05-17 09:25:31 +00:00
|
|
|
gst_query_set_latency (query, live, min, max);
|
2007-07-13 18:12:19 +00:00
|
|
|
}
|
|
|
|
gst_object_unref (peer);
|
2015-01-18 19:17:07 +00:00
|
|
|
break;
|
2007-07-13 18:12:19 +00:00
|
|
|
}
|
2017-01-23 19:45:05 +00:00
|
|
|
/* Simple fall back if we don't have a latency or a peer that we
|
|
|
|
* can ask about its latency yet.. */
|
|
|
|
res =
|
|
|
|
GST_BASE_TRANSFORM_CLASS (parent_class)->query (trans, direction,
|
|
|
|
query);
|
|
|
|
break;
|
2007-07-13 18:12:19 +00:00
|
|
|
}
|
2013-09-17 15:42:05 +00:00
|
|
|
case GST_QUERY_DURATION:
|
|
|
|
{
|
|
|
|
GstFormat format;
|
|
|
|
gint64 duration;
|
2017-01-23 19:08:15 +00:00
|
|
|
gdouble rate;
|
2013-09-17 15:42:05 +00:00
|
|
|
|
2017-01-23 19:08:15 +00:00
|
|
|
res =
|
|
|
|
GST_BASE_TRANSFORM_CLASS (parent_class)->query (trans, direction,
|
|
|
|
query);
|
2013-09-17 15:42:05 +00:00
|
|
|
|
2017-01-23 19:08:15 +00:00
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (videorate);
|
|
|
|
rate = videorate->rate;
|
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
|
|
|
|
|
|
|
if (rate == 1.0)
|
|
|
|
break;
|
2013-09-17 15:42:05 +00:00
|
|
|
|
|
|
|
gst_query_parse_duration (query, &format, &duration);
|
|
|
|
|
|
|
|
if (format != GST_FORMAT_TIME) {
|
|
|
|
GST_DEBUG_OBJECT (videorate, "not TIME format");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
GST_LOG_OBJECT (videorate, "upstream duration: %" G_GINT64_FORMAT,
|
|
|
|
duration);
|
2017-01-23 19:08:15 +00:00
|
|
|
/* Shouldn't this be a multiplication if the direction is downstream? */
|
2013-09-17 15:42:05 +00:00
|
|
|
if (GST_CLOCK_TIME_IS_VALID (duration)) {
|
2017-01-23 19:08:15 +00:00
|
|
|
duration = (gint64) (duration / rate);
|
2013-09-17 15:42:05 +00:00
|
|
|
}
|
|
|
|
GST_LOG_OBJECT (videorate, "our duration: %" G_GINT64_FORMAT, duration);
|
|
|
|
gst_query_set_duration (query, format, duration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_QUERY_POSITION:
|
|
|
|
{
|
|
|
|
GstFormat dst_format;
|
|
|
|
gint64 dst_value;
|
2017-01-23 19:08:15 +00:00
|
|
|
gdouble rate;
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (videorate);
|
|
|
|
rate = videorate->rate;
|
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
2013-09-17 15:42:05 +00:00
|
|
|
|
2017-01-23 19:08:15 +00:00
|
|
|
gst_query_parse_position (query, &dst_format, NULL);
|
2013-09-17 15:42:05 +00:00
|
|
|
|
|
|
|
if (dst_format != GST_FORMAT_TIME) {
|
|
|
|
GST_DEBUG_OBJECT (videorate, "not TIME format");
|
|
|
|
break;
|
|
|
|
}
|
2017-01-23 19:08:15 +00:00
|
|
|
/* Shouldn't this be a multiplication if the direction is downstream? */
|
2013-09-17 15:42:05 +00:00
|
|
|
dst_value =
|
|
|
|
(gint64) (gst_segment_to_stream_time (&videorate->segment,
|
2017-01-23 19:08:15 +00:00
|
|
|
GST_FORMAT_TIME, videorate->last_ts / rate));
|
2013-09-17 15:42:05 +00:00
|
|
|
GST_LOG_OBJECT (videorate, "our position: %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (dst_value));
|
|
|
|
gst_query_set_position (query, dst_format, dst_value);
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2007-07-13 18:12:19 +00:00
|
|
|
default:
|
2015-01-18 19:17:07 +00:00
|
|
|
res =
|
|
|
|
GST_BASE_TRANSFORM_CLASS (parent_class)->query (trans, direction,
|
|
|
|
query);
|
2007-07-13 18:12:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2015-01-18 19:58:36 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_rate_propose_allocation (GstBaseTransform * trans,
|
|
|
|
GstQuery * decide_query, GstQuery * query)
|
|
|
|
{
|
|
|
|
GstBaseTransformClass *klass = GST_BASE_TRANSFORM_CLASS (parent_class);
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
/* We should always be passthrough */
|
|
|
|
g_return_val_if_fail (decide_query == NULL, FALSE);
|
|
|
|
|
|
|
|
res = klass->propose_allocation (trans, NULL, query);
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
guint i = 0;
|
|
|
|
guint n_allocation;
|
|
|
|
guint down_min = 0;
|
|
|
|
|
|
|
|
n_allocation = gst_query_get_n_allocation_pools (query);
|
|
|
|
|
|
|
|
while (i < n_allocation) {
|
2015-03-24 19:18:36 +00:00
|
|
|
GstBufferPool *pool = NULL;
|
2015-01-18 19:58:36 +00:00
|
|
|
guint size, min, max;
|
|
|
|
|
|
|
|
gst_query_parse_nth_allocation_pool (query, i, &pool, &size, &min, &max);
|
|
|
|
|
|
|
|
if (min == max) {
|
|
|
|
if (pool)
|
|
|
|
gst_object_unref (pool);
|
|
|
|
gst_query_remove_nth_allocation_pool (query, i);
|
|
|
|
n_allocation--;
|
|
|
|
down_min = MAX (min, down_min);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_query_set_nth_allocation_pool (query, i, pool, size, min + 1, max);
|
2015-03-24 19:18:36 +00:00
|
|
|
if (pool)
|
|
|
|
gst_object_unref (pool);
|
2015-01-18 19:58:36 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n_allocation == 0) {
|
|
|
|
GstCaps *caps;
|
|
|
|
GstVideoInfo info;
|
|
|
|
|
|
|
|
gst_query_parse_allocation (query, &caps, NULL);
|
|
|
|
gst_video_info_from_caps (&info, caps);
|
|
|
|
|
|
|
|
gst_query_add_allocation_pool (query, NULL, info.size, down_min + 1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-05-02 09:43:38 +00:00
|
|
|
static GstFlowReturn
|
2011-08-23 08:11:52 +00:00
|
|
|
gst_video_rate_trans_ip_max_avg (GstVideoRate * videorate, GstBuffer * buf)
|
2011-05-02 09:43:38 +00:00
|
|
|
{
|
|
|
|
GstClockTime ts = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
|
|
|
videorate->in++;
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (ts) || videorate->wanted_diff == 0)
|
|
|
|
goto push;
|
|
|
|
|
|
|
|
/* drop frames if they exceed our output rate */
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (videorate->last_ts)) {
|
2016-08-18 09:03:39 +00:00
|
|
|
GstClockTimeDiff diff =
|
|
|
|
videorate->segment.rate <
|
|
|
|
0 ? videorate->last_ts - ts : ts - videorate->last_ts;
|
2011-05-02 09:43:38 +00:00
|
|
|
|
|
|
|
/* Drop buffer if its early compared to the desired frame rate and
|
|
|
|
* the current average is higher than the desired average
|
|
|
|
*/
|
|
|
|
if (diff < videorate->wanted_diff &&
|
|
|
|
videorate->average < videorate->wanted_diff)
|
|
|
|
goto drop;
|
|
|
|
|
|
|
|
/* Update average */
|
|
|
|
if (videorate->average) {
|
|
|
|
GstClockTimeDiff wanted_diff;
|
|
|
|
|
|
|
|
if (G_LIKELY (videorate->average_period > videorate->wanted_diff))
|
|
|
|
wanted_diff = videorate->wanted_diff;
|
|
|
|
else
|
|
|
|
wanted_diff = videorate->average_period * 10;
|
|
|
|
|
|
|
|
videorate->average =
|
|
|
|
gst_util_uint64_scale_round (videorate->average,
|
|
|
|
videorate->average_period - wanted_diff,
|
|
|
|
videorate->average_period) +
|
|
|
|
gst_util_uint64_scale_round (diff, wanted_diff,
|
|
|
|
videorate->average_period);
|
|
|
|
} else {
|
|
|
|
videorate->average = diff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
videorate->last_ts = ts;
|
|
|
|
|
|
|
|
push:
|
|
|
|
videorate->out++;
|
2011-08-23 08:11:52 +00:00
|
|
|
return GST_FLOW_OK;
|
2011-05-02 09:43:38 +00:00
|
|
|
|
|
|
|
drop:
|
|
|
|
if (!videorate->silent)
|
|
|
|
gst_video_rate_notify_drop (videorate);
|
2011-08-23 08:11:52 +00:00
|
|
|
return GST_BASE_TRANSFORM_FLOW_DROPPED;
|
2011-05-02 09:43:38 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 12:18:42 +00:00
|
|
|
/* Check if downstream forces variable framerate (0/1) and if
|
|
|
|
* it is the case, use variable framerate ourself
|
|
|
|
* Otherwise compute the framerate from the 2 buffers that we
|
|
|
|
* have already received and make use of it as wanted framerate
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gst_video_rate_check_variable_rate (GstVideoRate * videorate,
|
|
|
|
GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
GstStructure *st;
|
|
|
|
gint fps_d, fps_n;
|
2016-01-08 18:05:38 +00:00
|
|
|
GstCaps *srcpadcaps, *tmpcaps, *downstream_caps;
|
2014-12-09 12:18:42 +00:00
|
|
|
GstPad *pad = NULL;
|
|
|
|
|
|
|
|
srcpadcaps =
|
|
|
|
gst_pad_get_current_caps (GST_BASE_TRANSFORM_SRC_PAD (videorate));
|
|
|
|
|
|
|
|
gst_video_guess_framerate (GST_BUFFER_PTS (buffer) -
|
|
|
|
GST_BUFFER_PTS (videorate->prevbuf), &fps_n, &fps_d);
|
2015-04-03 23:42:52 +00:00
|
|
|
|
2014-12-09 12:18:42 +00:00
|
|
|
tmpcaps = gst_caps_copy (srcpadcaps);
|
|
|
|
st = gst_caps_get_structure (tmpcaps, 0);
|
|
|
|
gst_structure_set (st, "framerate", GST_TYPE_FRACTION, fps_n, fps_d, NULL);
|
|
|
|
gst_caps_unref (srcpadcaps);
|
|
|
|
|
|
|
|
pad = gst_pad_get_peer (GST_BASE_TRANSFORM_SRC_PAD (videorate));
|
2016-01-08 18:05:38 +00:00
|
|
|
downstream_caps = gst_pad_query_caps (pad, NULL);
|
|
|
|
if (pad && !gst_caps_can_intersect (tmpcaps, downstream_caps)) {
|
2014-12-09 12:18:42 +00:00
|
|
|
videorate->force_variable_rate = TRUE;
|
2016-01-08 18:05:38 +00:00
|
|
|
gst_caps_unref (downstream_caps);
|
2014-12-09 12:18:42 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "Downstream forces variable framerate"
|
|
|
|
" respecting it");
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
2016-01-08 18:05:38 +00:00
|
|
|
gst_caps_unref (downstream_caps);
|
2014-12-09 12:18:42 +00:00
|
|
|
|
|
|
|
videorate->to_rate_numerator = fps_n;
|
|
|
|
videorate->to_rate_denominator = fps_d;
|
|
|
|
|
2015-04-03 23:46:46 +00:00
|
|
|
GST_INFO_OBJECT (videorate, "Computed framerate to %d/%d",
|
2014-12-09 12:18:42 +00:00
|
|
|
videorate->to_rate_numerator, videorate->to_rate_denominator);
|
|
|
|
|
|
|
|
videorate->updating_caps = TRUE;
|
|
|
|
gst_base_transform_update_src_caps (GST_BASE_TRANSFORM (videorate), tmpcaps);
|
|
|
|
|
|
|
|
done:
|
2015-04-03 23:42:52 +00:00
|
|
|
gst_caps_unref (tmpcaps);
|
2014-12-09 12:18:42 +00:00
|
|
|
if (pad)
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
static GstFlowReturn
|
2011-08-23 08:11:52 +00:00
|
|
|
gst_video_rate_transform_ip (GstBaseTransform * trans, GstBuffer * buffer)
|
2005-05-09 14:03:20 +00:00
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoRate *videorate;
|
2011-08-23 08:11:52 +00:00
|
|
|
GstFlowReturn res = GST_BASE_TRANSFORM_FLOW_DROPPED;
|
2016-08-18 09:03:39 +00:00
|
|
|
GstClockTime intime, in_ts, in_dur, last_ts;
|
2011-05-02 09:43:38 +00:00
|
|
|
GstClockTime avg_period;
|
|
|
|
gboolean skip = FALSE;
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate = GST_VIDEO_RATE (trans);
|
2006-03-02 16:47:34 +00:00
|
|
|
|
2006-04-28 14:49:22 +00:00
|
|
|
/* make sure the denominators are not 0 */
|
2006-03-02 16:47:34 +00:00
|
|
|
if (videorate->from_rate_denominator == 0 ||
|
|
|
|
videorate->to_rate_denominator == 0)
|
|
|
|
goto not_negotiated;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2014-12-09 12:18:42 +00:00
|
|
|
if (videorate->to_rate_numerator == 0 && videorate->prevbuf &&
|
|
|
|
!videorate->force_variable_rate) {
|
|
|
|
gst_video_rate_check_variable_rate (videorate, buffer);
|
|
|
|
}
|
|
|
|
|
2011-05-02 09:43:38 +00:00
|
|
|
GST_OBJECT_LOCK (videorate);
|
|
|
|
avg_period = videorate->average_period_set;
|
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
|
|
|
|
|
|
|
/* MT-safe switching between modes */
|
|
|
|
if (G_UNLIKELY (avg_period != videorate->average_period)) {
|
2011-08-25 14:14:58 +00:00
|
|
|
gboolean switch_mode = (avg_period == 0 || videorate->average_period == 0);
|
2011-05-02 09:43:38 +00:00
|
|
|
videorate->average_period = avg_period;
|
|
|
|
videorate->last_ts = GST_CLOCK_TIME_NONE;
|
2011-08-25 14:14:58 +00:00
|
|
|
|
|
|
|
if (switch_mode) {
|
|
|
|
if (avg_period) {
|
|
|
|
/* enabling average mode */
|
|
|
|
videorate->average = 0;
|
|
|
|
/* make sure no cached buffers from regular mode are left */
|
|
|
|
gst_video_rate_swap_prev (videorate, NULL, 0);
|
|
|
|
} else {
|
|
|
|
/* enable regular mode */
|
|
|
|
videorate->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
skip = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* max averaging mode has a no latency, normal mode does */
|
|
|
|
gst_element_post_message (GST_ELEMENT (videorate),
|
|
|
|
gst_message_new_latency (GST_OBJECT (videorate)));
|
2011-05-02 09:43:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videorate->average_period > 0)
|
2011-08-23 08:11:52 +00:00
|
|
|
return gst_video_rate_trans_ip_max_avg (videorate, buffer);
|
2011-05-02 09:43:38 +00:00
|
|
|
|
2006-04-28 14:19:49 +00:00
|
|
|
in_ts = GST_BUFFER_TIMESTAMP (buffer);
|
2009-04-30 14:37:38 +00:00
|
|
|
in_dur = GST_BUFFER_DURATION (buffer);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (in_ts == GST_CLOCK_TIME_NONE)) {
|
2016-08-18 09:03:39 +00:00
|
|
|
/* For reverse playback, we need all input timestamps as we can't
|
|
|
|
* guess from the previous buffers timestamp and duration */
|
|
|
|
if (G_UNLIKELY (in_ts == GST_CLOCK_TIME_NONE
|
|
|
|
&& videorate->segment.rate < 0.0))
|
|
|
|
goto invalid_buffer;
|
2009-04-30 14:37:38 +00:00
|
|
|
in_ts = videorate->last_ts;
|
|
|
|
if (G_UNLIKELY (in_ts == GST_CLOCK_TIME_NONE))
|
|
|
|
goto invalid_buffer;
|
|
|
|
}
|
2006-04-28 14:19:49 +00:00
|
|
|
|
2009-04-30 14:37:38 +00:00
|
|
|
/* get the time of the next expected buffer timestamp, we use this when the
|
|
|
|
* next buffer has -1 as a timestamp */
|
2016-08-18 09:03:39 +00:00
|
|
|
last_ts = videorate->last_ts;
|
2009-04-30 14:37:38 +00:00
|
|
|
videorate->last_ts = in_ts;
|
2016-08-18 09:03:39 +00:00
|
|
|
if (in_dur != GST_CLOCK_TIME_NONE && videorate->segment.rate > 0.0)
|
2009-04-30 14:37:38 +00:00
|
|
|
videorate->last_ts += in_dur;
|
2007-05-03 10:47:22 +00:00
|
|
|
|
2006-04-28 14:19:49 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate, "got buffer with timestamp %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (in_ts));
|
|
|
|
|
2006-09-28 11:46:26 +00:00
|
|
|
/* the input time is the time in the segment + all previously accumulated
|
|
|
|
* segments */
|
2011-05-16 11:48:11 +00:00
|
|
|
intime = in_ts + videorate->segment.base;
|
2005-05-09 14:03:20 +00:00
|
|
|
|
2006-04-28 14:49:22 +00:00
|
|
|
/* we need to have two buffers to compare */
|
2014-11-12 14:23:37 +00:00
|
|
|
if (videorate->prevbuf == NULL || videorate->drop_only) {
|
2016-08-18 09:03:39 +00:00
|
|
|
/* We can calculate the duration of the buffer here if not given for
|
|
|
|
* reverse playback. We need this later */
|
|
|
|
if (videorate->segment.rate < 0.0 && !GST_BUFFER_DURATION_IS_VALID (buffer)) {
|
|
|
|
/* As we require valid timestamps all the time for reverse playback, we either
|
|
|
|
* have a valid last_ts or we're at the very first buffer. */
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (last_ts))
|
|
|
|
GST_BUFFER_DURATION (buffer) = videorate->segment.stop - in_ts;
|
|
|
|
else
|
|
|
|
GST_BUFFER_DURATION (buffer) = last_ts - in_ts;
|
|
|
|
}
|
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_swap_prev (videorate, buffer, intime);
|
2006-04-28 14:49:22 +00:00
|
|
|
videorate->in++;
|
2007-03-23 12:32:33 +00:00
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (videorate->next_ts)) {
|
|
|
|
/* new buffer, we expect to output a buffer that matches the first
|
|
|
|
* timestamp in the segment */
|
2011-05-02 09:43:38 +00:00
|
|
|
if (videorate->skip_to_first || skip) {
|
2011-02-21 11:27:17 +00:00
|
|
|
videorate->next_ts = intime;
|
2017-05-02 11:32:02 +00:00
|
|
|
if (videorate->segment.rate < 0.0)
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->base_ts = videorate->segment.stop - in_ts;
|
2017-05-02 11:32:02 +00:00
|
|
|
else
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->base_ts = in_ts - videorate->segment.start;
|
2011-02-21 11:27:17 +00:00
|
|
|
videorate->out_frame_count = 0;
|
2009-09-11 05:36:10 +00:00
|
|
|
} else {
|
2017-05-02 11:32:02 +00:00
|
|
|
if (videorate->segment.rate < 0.0)
|
|
|
|
videorate->next_ts =
|
|
|
|
videorate->segment.stop + videorate->segment.base;
|
|
|
|
else
|
2016-08-18 09:03:39 +00:00
|
|
|
videorate->next_ts =
|
|
|
|
videorate->segment.start + videorate->segment.base;
|
2009-09-11 05:36:10 +00:00
|
|
|
}
|
2007-03-23 12:32:33 +00:00
|
|
|
}
|
2014-11-12 14:23:37 +00:00
|
|
|
|
|
|
|
/* In drop-only mode we can already decide here if we should output the
|
|
|
|
* current frame or drop it because it's coming earlier than our minimum
|
|
|
|
* allowed frame period. This also keeps latency down to 0 frames
|
|
|
|
*/
|
|
|
|
if (videorate->drop_only) {
|
2016-08-18 09:03:39 +00:00
|
|
|
if ((videorate->segment.rate > 0.0 && intime >= videorate->next_ts) ||
|
|
|
|
(videorate->segment.rate < 0.0 && intime <= videorate->next_ts)) {
|
2014-11-12 14:23:37 +00:00
|
|
|
GstFlowReturn r;
|
|
|
|
|
2017-04-04 11:19:02 +00:00
|
|
|
/* The buffer received from basetransform is garanteed to be writable.
|
|
|
|
* It just needs to be reffed so the buffer won't be consumed once pushed and
|
|
|
|
* GstBaseTransform can get its reference back. */
|
|
|
|
if ((r = gst_video_rate_push_buffer (videorate,
|
|
|
|
gst_buffer_ref (buffer), FALSE,
|
2016-08-18 09:03:39 +00:00
|
|
|
GST_CLOCK_TIME_NONE)) != GST_FLOW_OK) {
|
2014-11-12 14:23:37 +00:00
|
|
|
res = r;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* No need to keep the buffer around for longer */
|
|
|
|
gst_buffer_replace (&videorate->prevbuf, NULL);
|
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
} else {
|
2006-03-02 16:47:34 +00:00
|
|
|
GstClockTime prevtime;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
gint count = 0;
|
|
|
|
gint64 diff1, diff2;
|
|
|
|
|
2005-11-16 17:56:40 +00:00
|
|
|
prevtime = videorate->prev_ts;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2004-06-24 12:45:27 +00:00
|
|
|
GST_LOG_OBJECT (videorate,
|
2005-11-16 17:56:40 +00:00
|
|
|
"BEGINNING prev buf %" GST_TIME_FORMAT " new buf %" GST_TIME_FORMAT
|
2004-06-26 15:43:55 +00:00
|
|
|
" outgoing ts %" GST_TIME_FORMAT, GST_TIME_ARGS (prevtime),
|
2004-06-24 12:45:27 +00:00
|
|
|
GST_TIME_ARGS (intime), GST_TIME_ARGS (videorate->next_ts));
|
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
videorate->in++;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2006-04-26 16:44:20 +00:00
|
|
|
/* drop new buffer if it's before previous one */
|
2016-08-18 09:03:39 +00:00
|
|
|
if ((videorate->segment.rate > 0.0 && intime < prevtime) ||
|
|
|
|
(videorate->segment.rate < 0.0 && intime > prevtime)) {
|
2006-04-26 16:44:20 +00:00
|
|
|
GST_DEBUG_OBJECT (videorate,
|
|
|
|
"The new buffer (%" GST_TIME_FORMAT
|
|
|
|
") is before the previous buffer (%"
|
|
|
|
GST_TIME_FORMAT "). Dropping new buffer.",
|
|
|
|
GST_TIME_ARGS (intime), GST_TIME_ARGS (prevtime));
|
|
|
|
videorate->drop++;
|
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_drop (videorate);
|
2006-04-26 16:44:20 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
/* got 2 buffers, see which one is the best */
|
|
|
|
do {
|
2017-05-02 11:32:02 +00:00
|
|
|
GstClockTime next_ts = videorate->next_ts * videorate->rate;
|
|
|
|
|
|
|
|
/* take absolute values, beware: abs and ABS don't work for gint64 */
|
|
|
|
if (prevtime > next_ts)
|
|
|
|
diff1 = prevtime - next_ts;
|
|
|
|
else
|
|
|
|
diff1 = next_ts - prevtime;
|
|
|
|
|
|
|
|
if (intime > next_ts)
|
|
|
|
diff2 = intime - next_ts;
|
|
|
|
else
|
|
|
|
diff2 = next_ts - intime;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (videorate,
|
|
|
|
"diff with prev %" GST_TIME_FORMAT " diff with new %"
|
|
|
|
GST_TIME_FORMAT " outgoing ts %" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (diff1), GST_TIME_ARGS (diff2),
|
|
|
|
GST_TIME_ARGS (next_ts));
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2016-08-18 09:03:39 +00:00
|
|
|
if (videorate->segment.rate < 0.0) {
|
|
|
|
/* Make sure that we have a duration for this buffer. The previous
|
|
|
|
* buffer already has a duration given by either exactly this code,
|
|
|
|
* or the code above for the very first buffer */
|
|
|
|
g_assert (GST_BUFFER_DURATION_IS_VALID (videorate->prevbuf));
|
2017-05-02 11:32:02 +00:00
|
|
|
if (!GST_BUFFER_DURATION_IS_VALID (buffer) && prevtime > intime)
|
|
|
|
GST_BUFFER_DURATION (buffer) = prevtime - intime;
|
2016-08-18 09:03:39 +00:00
|
|
|
} else {
|
2014-12-09 10:31:30 +00:00
|
|
|
/* Make sure that we have a duration for previous buffer */
|
2017-05-02 11:32:02 +00:00
|
|
|
if (!GST_BUFFER_DURATION_IS_VALID (videorate->prevbuf)
|
|
|
|
&& intime > prevtime)
|
|
|
|
GST_BUFFER_DURATION (videorate->prevbuf) = intime - prevtime;
|
2014-12-09 10:31:30 +00:00
|
|
|
}
|
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
/* output first one when its the best */
|
2009-04-30 14:37:38 +00:00
|
|
|
if (diff1 <= diff2) {
|
2011-08-23 08:11:52 +00:00
|
|
|
GstFlowReturn r;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
count++;
|
2004-06-24 12:45:27 +00:00
|
|
|
|
2006-03-02 16:47:34 +00:00
|
|
|
/* on error the _flush function posted a warning already */
|
2011-08-23 08:11:52 +00:00
|
|
|
if ((r = gst_video_rate_flush_prev (videorate,
|
2016-08-18 09:03:39 +00:00
|
|
|
count > 1, intime)) != GST_FLOW_OK) {
|
2011-08-23 08:11:52 +00:00
|
|
|
res = r;
|
2006-03-02 16:47:34 +00:00
|
|
|
goto done;
|
2007-04-24 15:00:07 +00:00
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
2011-04-29 12:58:02 +00:00
|
|
|
|
2009-04-30 14:37:38 +00:00
|
|
|
/* continue while the first one was the best, if they were equal avoid
|
|
|
|
* going into an infinite loop */
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
2004-06-26 15:58:35 +00:00
|
|
|
while (diff1 < diff2);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
|
|
|
/* if we outputed the first buffer more then once, we have dups */
|
2004-06-17 17:07:50 +00:00
|
|
|
if (count > 1) {
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
videorate->dup += count - 1;
|
2004-06-22 11:19:46 +00:00
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_duplicate (videorate);
|
2004-06-17 17:07:50 +00:00
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
/* if we didn't output the first buffer, we have a drop */
|
2004-06-17 17:07:50 +00:00
|
|
|
else if (count == 0) {
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
videorate->drop++;
|
2006-03-02 16:47:34 +00:00
|
|
|
|
2004-06-22 11:19:46 +00:00
|
|
|
if (!videorate->silent)
|
2010-10-07 19:37:10 +00:00
|
|
|
gst_video_rate_notify_drop (videorate);
|
2006-03-02 16:47:34 +00:00
|
|
|
|
2004-06-24 12:45:27 +00:00
|
|
|
GST_LOG_OBJECT (videorate,
|
2004-06-26 15:43:55 +00:00
|
|
|
"new is best, old never used, drop, outgoing ts %"
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (videorate->next_ts));
|
2004-06-17 17:07:50 +00:00
|
|
|
}
|
2004-06-24 12:45:27 +00:00
|
|
|
GST_LOG_OBJECT (videorate,
|
2005-11-16 17:56:40 +00:00
|
|
|
"END, putting new in old, diff1 %" GST_TIME_FORMAT
|
2004-12-19 13:16:24 +00:00
|
|
|
", diff2 %" GST_TIME_FORMAT ", next_ts %" GST_TIME_FORMAT
|
2009-10-09 12:23:36 +00:00
|
|
|
", in %" G_GUINT64_FORMAT ", out %" G_GUINT64_FORMAT ", drop %"
|
|
|
|
G_GUINT64_FORMAT ", dup %" G_GUINT64_FORMAT, GST_TIME_ARGS (diff1),
|
2004-12-19 13:16:24 +00:00
|
|
|
GST_TIME_ARGS (diff2), GST_TIME_ARGS (videorate->next_ts),
|
|
|
|
videorate->in, videorate->out, videorate->drop, videorate->dup);
|
|
|
|
|
2005-05-09 14:03:20 +00:00
|
|
|
/* swap in new one when it's the best */
|
2006-03-02 16:47:34 +00:00
|
|
|
gst_video_rate_swap_prev (videorate, buffer, intime);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
2005-05-09 14:03:20 +00:00
|
|
|
done:
|
|
|
|
return res;
|
2006-03-02 16:47:34 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
not_negotiated:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (videorate, "no framerate negotiated");
|
|
|
|
res = GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
goto done;
|
|
|
|
}
|
2007-05-03 10:47:22 +00:00
|
|
|
|
|
|
|
invalid_buffer:
|
|
|
|
{
|
|
|
|
GST_WARNING_OBJECT (videorate,
|
|
|
|
"Got buffer with GST_CLOCK_TIME_NONE timestamp, discarding it");
|
2011-08-23 08:11:52 +00:00
|
|
|
res = GST_BASE_TRANSFORM_FLOW_DROPPED;
|
2007-05-03 10:47:22 +00:00
|
|
|
goto done;
|
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
2011-08-23 08:11:52 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_rate_start (GstBaseTransform * trans)
|
|
|
|
{
|
|
|
|
gst_video_rate_reset (GST_VIDEO_RATE (trans));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-12-06 21:57:32 +00:00
|
|
|
static gboolean
|
|
|
|
gst_video_rate_stop (GstBaseTransform * trans)
|
|
|
|
{
|
|
|
|
gst_video_rate_reset (GST_VIDEO_RATE (trans));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-09-17 15:42:05 +00:00
|
|
|
static void
|
|
|
|
gst_videorate_update_duration (GstVideoRate * videorate)
|
|
|
|
{
|
|
|
|
GstMessage *m;
|
|
|
|
|
|
|
|
m = gst_message_new_duration_changed (GST_OBJECT (videorate));
|
|
|
|
gst_element_post_message (GST_ELEMENT (videorate), m);
|
|
|
|
}
|
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_rate_set_property (GObject * object,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoRate *videorate = GST_VIDEO_RATE (object);
|
2014-11-12 14:23:37 +00:00
|
|
|
gboolean latency_changed = FALSE;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-05-02 09:43:38 +00:00
|
|
|
GST_OBJECT_LOCK (videorate);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
switch (prop_id) {
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_SILENT:
|
2004-06-22 11:19:46 +00:00
|
|
|
videorate->silent = g_value_get_boolean (value);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_NEW_PREF:
|
2004-06-22 11:19:46 +00:00
|
|
|
videorate->new_pref = g_value_get_double (value);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_SKIP_TO_FIRST:
|
2009-09-11 05:36:10 +00:00
|
|
|
videorate->skip_to_first = g_value_get_boolean (value);
|
|
|
|
break;
|
2014-11-12 14:23:37 +00:00
|
|
|
case PROP_DROP_ONLY:{
|
|
|
|
gboolean new_value = g_value_get_boolean (value);
|
|
|
|
|
|
|
|
/* Latency changes if we switch drop-only mode */
|
|
|
|
latency_changed = new_value != videorate->drop_only;
|
2011-04-29 12:58:02 +00:00
|
|
|
videorate->drop_only = g_value_get_boolean (value);
|
2011-09-19 17:26:04 +00:00
|
|
|
goto reconfigure;
|
2014-11-12 14:23:37 +00:00
|
|
|
}
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_AVERAGE_PERIOD:
|
2011-08-23 08:11:52 +00:00
|
|
|
videorate->average_period_set = g_value_get_uint64 (value);
|
2011-05-02 09:43:38 +00:00
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_MAX_RATE:
|
2011-09-19 17:26:04 +00:00
|
|
|
g_atomic_int_set (&videorate->max_rate, g_value_get_int (value));
|
|
|
|
goto reconfigure;
|
2013-09-17 15:42:05 +00:00
|
|
|
case PROP_RATE:
|
|
|
|
videorate->rate = g_value_get_double (value);
|
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
|
|
|
|
|
|
|
gst_videorate_update_duration (videorate);
|
|
|
|
return;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2011-05-02 09:43:38 +00:00
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
2013-09-17 15:42:05 +00:00
|
|
|
|
2011-09-19 17:26:04 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
reconfigure:
|
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
2012-02-24 10:03:16 +00:00
|
|
|
gst_base_transform_reconfigure_src (GST_BASE_TRANSFORM (videorate));
|
2014-11-12 14:23:37 +00:00
|
|
|
|
|
|
|
if (latency_changed) {
|
|
|
|
gst_element_post_message (GST_ELEMENT (videorate),
|
|
|
|
gst_message_new_latency (GST_OBJECT (videorate)));
|
|
|
|
}
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-12-01 01:12:55 +00:00
|
|
|
gst_video_rate_get_property (GObject * object,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GstVideoRate *videorate = GST_VIDEO_RATE (object);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
|
2011-05-02 09:43:38 +00:00
|
|
|
GST_OBJECT_LOCK (videorate);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
switch (prop_id) {
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_IN:
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
g_value_set_uint64 (value, videorate->in);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_OUT:
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
g_value_set_uint64 (value, videorate->out);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_DUP:
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
g_value_set_uint64 (value, videorate->dup);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_DROP:
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
g_value_set_uint64 (value, videorate->drop);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_SILENT:
|
2004-06-22 11:19:46 +00:00
|
|
|
g_value_set_boolean (value, videorate->silent);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_NEW_PREF:
|
2004-06-22 11:19:46 +00:00
|
|
|
g_value_set_double (value, videorate->new_pref);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_SKIP_TO_FIRST:
|
2009-09-11 05:36:10 +00:00
|
|
|
g_value_set_boolean (value, videorate->skip_to_first);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_DROP_ONLY:
|
2011-04-29 12:58:02 +00:00
|
|
|
g_value_set_boolean (value, videorate->drop_only);
|
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_AVERAGE_PERIOD:
|
2011-08-23 08:11:52 +00:00
|
|
|
g_value_set_uint64 (value, videorate->average_period_set);
|
2011-05-02 09:43:38 +00:00
|
|
|
break;
|
2011-11-24 13:41:13 +00:00
|
|
|
case PROP_MAX_RATE:
|
2011-09-19 17:26:04 +00:00
|
|
|
g_value_set_int (value, g_atomic_int_get (&videorate->max_rate));
|
|
|
|
break;
|
2013-09-17 15:42:05 +00:00
|
|
|
case PROP_RATE:
|
|
|
|
g_value_set_double (value, videorate->rate);
|
|
|
|
break;
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2011-05-02 09:43:38 +00:00
|
|
|
GST_OBJECT_UNLOCK (videorate);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (video_rate_debug, "videorate", 0,
|
|
|
|
"VideoRate stream fixer");
|
2004-06-26 15:43:55 +00:00
|
|
|
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
return gst_element_register (plugin, "videorate", GST_RANK_NONE,
|
2005-12-01 01:12:55 +00:00
|
|
|
GST_TYPE_VIDEO_RATE);
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 13:11:05 +00:00
|
|
|
videorate,
|
gst/videorate/: Added a video timestamp corrector.
Original commit message from CVS:
* gst/videorate/Makefile.am:
* gst/videorate/gstvideorate.c: (gst_videorate_get_type),
(gst_videorate_base_init), (gst_videorate_class_init),
(gst_videorate_getcaps), (gst_videorate_link),
(gst_videorate_init), (gst_videorate_chain),
(gst_videorate_set_property), (gst_videorate_get_property),
(gst_videorate_change_state), (plugin_init):
Added a video timestamp corrector.
2004-06-16 09:39:02 +00:00
|
|
|
"Adjusts video frames",
|
2005-10-16 13:54:44 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|