gstreamer/subprojects/gst-plugins-base/gst-libs/gst/video/gstvideosink.c

368 lines
11 KiB
C

/* GStreamer video sink base class
* Copyright (C) <2003> Julien Moutte <julien@moutte.net>
* Copyright (C) <2009> Tim-Philipp Müller <tim centricular net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
/**
* SECTION:gstvideosink
* @title: GstVideoSink
* @short_description: Base class for video sinks
*
* Provides useful functions and a base class for video sinks.
*
* GstVideoSink will configure the default base sink to drop frames that
* arrive later than 20ms as this is considered the default threshold for
* observing out-of-sync frames.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstvideosink.h"
enum
{
PROP_SHOW_PREROLL_FRAME = 1
};
#define DEFAULT_SHOW_PREROLL_FRAME TRUE
struct _GstVideoSinkPrivate
{
GstVideoInfo info;
gboolean show_preroll_frame; /* ATOMIC */
};
G_DEFINE_TYPE_WITH_PRIVATE (GstVideoSink, gst_video_sink, GST_TYPE_BASE_SINK);
#ifndef GST_DISABLE_GST_DEBUG
#define GST_CAT_DEFAULT gst_video_sink_ensure_debug_category()
static GstDebugCategory *
gst_video_sink_ensure_debug_category (void)
{
static gsize cat_gonce = 0;
if (g_once_init_enter (&cat_gonce)) {
GstDebugCategory *cat = NULL;
GST_DEBUG_CATEGORY_INIT (cat, "videosink", 0, "GstVideoSink");
g_once_init_leave (&cat_gonce, (gsize) cat);
}
return (GstDebugCategory *) cat_gonce;
}
#endif /* GST_DISABLE_GST_DEBUG */
static GstBaseSinkClass *parent_class = NULL;
static void gst_video_sink_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
static void gst_video_sink_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
static GstStateChangeReturn gst_video_sink_change_state (GstElement * element,
GstStateChange transition);
static GstFlowReturn gst_video_sink_show_preroll_frame (GstBaseSink * bsink,
GstBuffer * buf);
static GstFlowReturn gst_video_sink_show_frame (GstBaseSink * bsink,
GstBuffer * buf);
static gboolean gst_video_sink_set_caps (GstBaseSink * bsink, GstCaps * caps);
static void gst_video_sink_get_times (GstBaseSink * bsink, GstBuffer * buffer,
GstClockTime * start, GstClockTime * end);
/**
* gst_video_sink_center_rect:
* @src: the #GstVideoRectangle describing the source area
* @dst: the #GstVideoRectangle describing the destination area
* @result: (out caller-allocates): a pointer to a #GstVideoRectangle which will receive the result area
* @scaling: a #gboolean indicating if scaling should be applied or not
*
* Deprecated: 1.20: Use gst_video_center_rect() instead.
*/
void
gst_video_sink_center_rect (GstVideoRectangle src, GstVideoRectangle dst,
GstVideoRectangle * result, gboolean scaling)
{
gst_video_center_rect (&src, &dst, result, scaling);
}
/**
* gst_video_center_rect:
* @src: a pointer to #GstVideoRectangle describing the source area
* @dst: a pointer to #GstVideoRectangle describing the destination area
* @result: (out caller-allocates): a pointer to a #GstVideoRectangle which will receive the result area
* @scaling: a #gboolean indicating if scaling should be applied or not
*
* Takes @src rectangle and position it at the center of @dst rectangle with or
* without @scaling. It handles clipping if the @src rectangle is bigger than
* the @dst one and @scaling is set to FALSE.
*
* Since: 1.20
*/
void
gst_video_center_rect (const GstVideoRectangle * src,
const GstVideoRectangle * dst, GstVideoRectangle * result, gboolean scaling)
{
g_return_if_fail (src != NULL);
g_return_if_fail (dst != NULL);
g_return_if_fail (result != NULL);
if (!scaling) {
result->w = MIN (src->w, dst->w);
result->h = MIN (src->h, dst->h);
result->x = dst->x + (dst->w - result->w) / 2;
result->y = dst->y + (dst->h - result->h) / 2;
} else {
gdouble src_ratio, dst_ratio;
g_return_if_fail (src->h != 0);
g_return_if_fail (dst->h != 0);
src_ratio = (gdouble) src->w / src->h;
dst_ratio = (gdouble) dst->w / dst->h;
if (src_ratio > dst_ratio) {
result->w = dst->w;
result->h = dst->w / src_ratio;
result->x = dst->x;
result->y = dst->y + (dst->h - result->h) / 2;
} else if (src_ratio < dst_ratio) {
result->w = dst->h * src_ratio;
result->h = dst->h;
result->x = dst->x + (dst->w - result->w) / 2;
result->y = dst->y;
} else {
result->x = dst->x;
result->y = dst->y;
result->w = dst->w;
result->h = dst->h;
}
}
GST_DEBUG ("source is %dx%d dest is %dx%d, result is %dx%d with x,y %dx%d",
src->w, src->h, dst->w, dst->h,
result->w, result->h, result->x, result->y);
}
/* Initing stuff */
static void
gst_video_sink_init (GstVideoSink * videosink)
{
videosink->width = 0;
videosink->height = 0;
/* 20ms is more than enough, 80-130ms is noticeable */
gst_base_sink_set_processing_deadline (GST_BASE_SINK (videosink),
15 * GST_MSECOND);
gst_base_sink_set_max_lateness (GST_BASE_SINK (videosink), 5 * GST_MSECOND);
gst_base_sink_set_qos_enabled (GST_BASE_SINK (videosink), TRUE);
videosink->priv = gst_video_sink_get_instance_private (videosink);
}
static void
gst_video_sink_class_init (GstVideoSinkClass * klass)
{
GstElementClass *element_class = (GstElementClass *) klass;
GstBaseSinkClass *basesink_class = (GstBaseSinkClass *) klass;
GObjectClass *gobject_class = (GObjectClass *) klass;
parent_class = g_type_class_peek_parent (klass);
gobject_class->set_property = gst_video_sink_set_property;
gobject_class->get_property = gst_video_sink_get_property;
/**
* GstVideoSink:show-preroll-frame:
*
* Whether to show video frames during preroll. If set to %FALSE, video
* frames will only be rendered in PLAYING state.
*/
g_object_class_install_property (gobject_class, PROP_SHOW_PREROLL_FRAME,
g_param_spec_boolean ("show-preroll-frame", "Show preroll frame",
"Whether to render video frames during preroll",
DEFAULT_SHOW_PREROLL_FRAME,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
element_class->change_state = GST_DEBUG_FUNCPTR (gst_video_sink_change_state);
basesink_class->render = GST_DEBUG_FUNCPTR (gst_video_sink_show_frame);
basesink_class->preroll =
GST_DEBUG_FUNCPTR (gst_video_sink_show_preroll_frame);
basesink_class->set_caps = GST_DEBUG_FUNCPTR (gst_video_sink_set_caps);
basesink_class->get_times = GST_DEBUG_FUNCPTR (gst_video_sink_get_times);
}
static GstStateChangeReturn
gst_video_sink_change_state (GstElement * element, GstStateChange transition)
{
GstVideoSink *vsink;
vsink = GST_VIDEO_SINK_CAST (element);
switch (transition) {
case GST_STATE_CHANGE_READY_TO_PAUSED:
gst_video_info_init (&vsink->priv->info);
break;
default:
break;
}
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
}
static gboolean
gst_video_sink_set_caps (GstBaseSink * bsink, GstCaps * caps)
{
GstVideoSink *vsink;
GstVideoSinkClass *klass;
GstVideoInfo info;
vsink = GST_VIDEO_SINK_CAST (bsink);
klass = GST_VIDEO_SINK_GET_CLASS (vsink);
if (!gst_video_info_from_caps (&info, caps)) {
GST_ERROR_OBJECT (bsink, "Failed to parse caps %" GST_PTR_FORMAT, caps);
return FALSE;
}
GST_DEBUG_OBJECT (bsink, "Setting caps %" GST_PTR_FORMAT, caps);
vsink->priv->info = info;
if (klass->set_info)
return klass->set_info (vsink, caps, &vsink->priv->info);
return TRUE;
}
static void
gst_video_sink_get_times (GstBaseSink * bsink, GstBuffer * buffer,
GstClockTime * start, GstClockTime * end)
{
GstVideoSink *vsink;
GstClockTime timestamp;
vsink = GST_VIDEO_SINK_CAST (bsink);
timestamp = GST_BUFFER_DTS_OR_PTS (buffer);
if (GST_CLOCK_TIME_IS_VALID (timestamp)) {
*start = timestamp;
if (GST_BUFFER_DURATION_IS_VALID (buffer)) {
*end = timestamp + GST_BUFFER_DURATION (buffer);
} else if (vsink->priv->info.fps_n > 0) {
*end = timestamp +
gst_util_uint64_scale_int (GST_SECOND, vsink->priv->info.fps_d,
vsink->priv->info.fps_n);
}
}
}
static GstFlowReturn
gst_video_sink_show_preroll_frame (GstBaseSink * bsink, GstBuffer * buf)
{
GstVideoSinkClass *klass;
GstVideoSink *vsink;
gboolean do_show;
vsink = GST_VIDEO_SINK_CAST (bsink);
klass = GST_VIDEO_SINK_GET_CLASS (vsink);
do_show = g_atomic_int_get (&vsink->priv->show_preroll_frame);
if (G_UNLIKELY (!do_show)) {
GST_DEBUG_OBJECT (bsink, "not rendering frame with ts=%" GST_TIME_FORMAT
", preroll rendering disabled",
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
}
if (klass->show_frame == NULL || !do_show) {
if (parent_class->preroll != NULL)
return parent_class->preroll (bsink, buf);
else
return GST_FLOW_OK;
}
GST_LOG_OBJECT (bsink, "rendering frame, ts=%" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
return klass->show_frame (GST_VIDEO_SINK_CAST (bsink), buf);
}
static GstFlowReturn
gst_video_sink_show_frame (GstBaseSink * bsink, GstBuffer * buf)
{
GstVideoSinkClass *klass;
klass = GST_VIDEO_SINK_GET_CLASS (bsink);
if (klass->show_frame == NULL) {
if (parent_class->render != NULL)
return parent_class->render (bsink, buf);
else
return GST_FLOW_OK;
}
GST_LOG_OBJECT (bsink, "rendering frame, ts=%" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
return klass->show_frame (GST_VIDEO_SINK_CAST (bsink), buf);
}
static void
gst_video_sink_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
GstVideoSink *vsink;
vsink = GST_VIDEO_SINK (object);
switch (prop_id) {
case PROP_SHOW_PREROLL_FRAME:
g_atomic_int_set (&vsink->priv->show_preroll_frame,
g_value_get_boolean (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gst_video_sink_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec)
{
GstVideoSink *vsink;
vsink = GST_VIDEO_SINK (object);
switch (prop_id) {
case PROP_SHOW_PREROLL_FRAME:
g_value_set_boolean (value,
g_atomic_int_get (&vsink->priv->show_preroll_frame));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}