2006-02-13 17:02:09 +00:00
|
|
|
/* gst-freeze -- Source freezer
|
|
|
|
* Copyright (C) 2005 Gergely Nagy <gergely.nagy@neteyes.hu>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-03-19 19:56:59 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-freeze
|
|
|
|
*
|
|
|
|
* Makes a stream from buffers of data.
|
2008-06-13 11:59:23 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
2008-03-19 19:56:59 +00:00
|
|
|
* <title>Example launch line</title>
|
|
|
|
* <para>
|
2008-06-13 11:59:23 +00:00
|
|
|
* |[
|
|
|
|
* gst-launch-0.10 filesrc location=gnome-home.png blocksize=4135 ! pngdec ! freeze ! ffmpegcolorspace ! xvimagesink
|
|
|
|
* ]| Produces a video stream from one picture.
|
2008-03-19 19:56:59 +00:00
|
|
|
* </para>
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
2006-02-13 17:02:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "gstfreeze.h"
|
|
|
|
|
2006-06-23 09:09:44 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (freeze_debug);
|
2006-02-13 17:02:09 +00:00
|
|
|
#define GST_CAT_DEFAULT freeze_debug
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ARG_0,
|
|
|
|
ARG_MAX_BUFFERS,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-04-25 21:56:38 +00:00
|
|
|
static const GstElementDetails freeze_details =
|
|
|
|
GST_ELEMENT_DETAILS ("Stream freezer",
|
2006-04-06 11:35:26 +00:00
|
|
|
"Generic",
|
|
|
|
"Makes a stream from buffers of data",
|
|
|
|
"Gergely Nagy <gergely.nagy@neteyes.hu>,"
|
|
|
|
" Renato Filho <renato.filho@indt.org.br>");
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_freeze_src_template =
|
2006-02-20 20:52:02 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2006-02-13 17:02:09 +00:00
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_freeze_sink_template =
|
2006-02-20 20:52:02 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2006-02-13 17:02:09 +00:00
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
static void gst_freeze_class_init (GstFreezeClass * klass);
|
2006-02-13 17:02:09 +00:00
|
|
|
static void gst_freeze_dispose (GObject * object);
|
|
|
|
static void gst_freeze_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_freeze_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static GstFlowReturn gst_freeze_chain (GstPad * pad, GstBuffer * buffer);
|
|
|
|
static GstStateChangeReturn gst_freeze_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
|
|
|
static GstFlowReturn gst_freeze_play (GstPad * pad, GstBuffer * buff);
|
|
|
|
static void gst_freeze_loop (GstPad * pad);
|
|
|
|
static gboolean gst_freeze_sink_activate (GstPad * sinkpad);
|
|
|
|
static gboolean gst_freeze_sink_activate_pull (GstPad * sinkpad,
|
|
|
|
gboolean active);
|
|
|
|
static gboolean gst_freeze_sink_event (GstPad * pad, GstEvent * event);
|
2006-02-20 20:52:02 +00:00
|
|
|
static void gst_freeze_clear_buffer (GstFreeze * freeze);
|
|
|
|
static void gst_freeze_buffer_free (gpointer data, gpointer user_data);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
|
2006-05-06 00:15:59 +00:00
|
|
|
GST_BOILERPLATE (GstFreeze, gst_freeze, GstElement, GST_TYPE_ELEMENT);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
2006-05-06 00:15:59 +00:00
|
|
|
static void
|
|
|
|
gst_freeze_base_init (gpointer klass)
|
2006-02-13 17:02:09 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &freeze_details);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gst_freeze_sink_template));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gst_freeze_src_template));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_class_init (GstFreezeClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
|
|
|
element_class->change_state = gst_freeze_change_state;
|
|
|
|
object_class->set_property = gst_freeze_set_property;
|
|
|
|
object_class->get_property = gst_freeze_get_property;
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
ARG_MAX_BUFFERS,
|
|
|
|
g_param_spec_uint ("max-buffers",
|
|
|
|
"max-buffers",
|
2006-02-13 17:02:09 +00:00
|
|
|
"Maximum number of buffers", 0, G_MAXUINT, 1, G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
object_class->dispose = gst_freeze_dispose;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_init (GstFreeze * freeze, GstFreezeClass * klass)
|
|
|
|
{
|
2006-02-20 20:52:02 +00:00
|
|
|
freeze->sinkpad =
|
2007-06-22 10:46:33 +00:00
|
|
|
gst_pad_new_from_static_template (&gst_freeze_sink_template, "sink");
|
2006-02-13 17:02:09 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (freeze), freeze->sinkpad);
|
|
|
|
gst_pad_set_activate_function (freeze->sinkpad, gst_freeze_sink_activate);
|
|
|
|
gst_pad_set_activatepull_function (freeze->sinkpad,
|
|
|
|
gst_freeze_sink_activate_pull);
|
|
|
|
gst_pad_set_chain_function (freeze->sinkpad, gst_freeze_chain);
|
|
|
|
gst_pad_set_getcaps_function (freeze->sinkpad, gst_pad_proxy_getcaps);
|
2006-02-20 20:52:02 +00:00
|
|
|
gst_pad_set_event_function (freeze->sinkpad, gst_freeze_sink_event);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
2007-06-22 10:46:33 +00:00
|
|
|
freeze->srcpad =
|
|
|
|
gst_pad_new_from_static_template (&gst_freeze_src_template, "src");
|
2006-02-13 17:02:09 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (freeze), freeze->srcpad);
|
|
|
|
gst_pad_set_getcaps_function (freeze->srcpad, gst_pad_proxy_getcaps);
|
|
|
|
|
|
|
|
freeze->timestamp_offset = 0;
|
|
|
|
freeze->running_time = 0;
|
|
|
|
freeze->current = NULL;
|
|
|
|
freeze->max_buffers = 1;
|
2006-02-20 20:52:02 +00:00
|
|
|
freeze->on_flush = FALSE;
|
|
|
|
freeze->buffers = g_queue_new ();
|
2006-02-13 17:02:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze = GST_FREEZE (object);
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
gst_freeze_clear_buffer (freeze);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
g_queue_free (freeze->buffers);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze = GST_FREEZE (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_MAX_BUFFERS:
|
|
|
|
freeze->max_buffers = g_value_get_uint (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze = GST_FREEZE (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_MAX_BUFFERS:
|
|
|
|
g_value_set_uint (value, freeze->max_buffers);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_freeze_chain (GstPad * pad, GstBuffer * buffer)
|
|
|
|
{
|
|
|
|
return gst_freeze_play (pad, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_freeze_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze = GST_FREEZE (element);
|
|
|
|
GstStateChangeReturn return_val = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
|
|
|
|
freeze->timestamp_offset = freeze->running_time = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return_val =
|
|
|
|
GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
|
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
|
|
freeze->timestamp_offset = freeze->running_time = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_freeze_play (GstPad * pad, GstBuffer * buff)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze;
|
|
|
|
guint64 cur_offset;
|
2006-02-20 20:52:02 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
freeze = GST_FREEZE (gst_pad_get_parent (pad));
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
if (freeze->on_flush) {
|
|
|
|
g_object_unref (freeze);
|
|
|
|
return GST_FLOW_WRONG_STATE;
|
|
|
|
}
|
2006-02-13 17:02:09 +00:00
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
cur_offset = freeze->offset;
|
|
|
|
/* If it is working in push mode this function will be called by "_chain"
|
|
|
|
and buff will never be NULL. In pull mode this function will be called
|
|
|
|
by _loop and buff will be NULL */
|
2006-02-13 17:02:09 +00:00
|
|
|
if (!buff) {
|
|
|
|
ret =
|
|
|
|
gst_pad_pull_range (GST_PAD (freeze->sinkpad), freeze->offset, 4096,
|
|
|
|
&buff);
|
|
|
|
if (ret != GST_FLOW_OK) {
|
|
|
|
gst_object_unref (freeze);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeze->offset += GST_BUFFER_SIZE (buff);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
if (g_queue_get_length (freeze->buffers) < freeze->max_buffers ||
|
2006-02-13 17:02:09 +00:00
|
|
|
freeze->max_buffers == 0) {
|
2006-02-20 20:52:02 +00:00
|
|
|
g_queue_push_tail (freeze->buffers, buff);
|
2006-02-13 17:02:09 +00:00
|
|
|
GST_DEBUG_OBJECT (freeze, "accepted buffer %u",
|
2006-02-20 20:52:02 +00:00
|
|
|
g_queue_get_length (freeze->buffers) - 1);
|
2006-02-13 17:02:09 +00:00
|
|
|
} else {
|
|
|
|
gst_buffer_unref (buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (freeze->current != NULL) {
|
|
|
|
GST_DEBUG_OBJECT (freeze, "switching to next buffer");
|
2006-02-20 20:52:02 +00:00
|
|
|
freeze->current = g_queue_peek_nth (freeze->buffers,
|
|
|
|
g_queue_index (freeze->buffers, (gpointer) freeze->current) + 1);
|
2006-02-13 17:02:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (freeze->current == NULL) {
|
|
|
|
if (freeze->max_buffers > 1)
|
|
|
|
GST_DEBUG_OBJECT (freeze, "restarting the loop");
|
2006-02-20 20:52:02 +00:00
|
|
|
freeze->current = g_queue_peek_head (freeze->buffers);
|
2006-02-13 17:02:09 +00:00
|
|
|
}
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (freeze->current) = freeze->timestamp_offset +
|
2006-02-13 17:02:09 +00:00
|
|
|
freeze->running_time;
|
2006-02-20 20:52:02 +00:00
|
|
|
freeze->running_time += GST_BUFFER_DURATION (freeze->current);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
gst_buffer_ref (freeze->current);
|
|
|
|
ret = gst_pad_push (freeze->srcpad, freeze->current);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
gst_object_unref (freeze);
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
return ret;
|
2006-02-13 17:02:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_loop (GstPad * pad)
|
|
|
|
{
|
|
|
|
gst_freeze_play (pad, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_freeze_sink_activate (GstPad * sinkpad)
|
|
|
|
{
|
|
|
|
GstFreeze *freeze;
|
|
|
|
|
|
|
|
freeze = GST_FREEZE (GST_PAD_PARENT (sinkpad));
|
|
|
|
|
|
|
|
if (gst_pad_check_pull_range (sinkpad)) {
|
|
|
|
return gst_pad_activate_pull (sinkpad, TRUE);
|
|
|
|
} else {
|
|
|
|
return gst_pad_activate_push (sinkpad, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_freeze_sink_activate_pull (GstPad * sinkpad, gboolean active)
|
|
|
|
{
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
if (active) {
|
|
|
|
/* if we have a scheduler we can start the task */
|
|
|
|
result = gst_pad_start_task (sinkpad,
|
|
|
|
(GstTaskFunction) gst_freeze_loop, sinkpad);
|
|
|
|
} else {
|
|
|
|
result = gst_pad_stop_task (sinkpad);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-02-20 20:52:02 +00:00
|
|
|
static void
|
|
|
|
gst_freeze_buffer_free (gpointer data, gpointer user_data)
|
|
|
|
{
|
|
|
|
gst_buffer_unref (GST_BUFFER (data));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_freeze_clear_buffer (GstFreeze * freeze)
|
|
|
|
{
|
|
|
|
if (freeze->buffers != NULL) {
|
|
|
|
g_queue_foreach (freeze->buffers, gst_freeze_buffer_free, NULL);
|
|
|
|
}
|
|
|
|
freeze->current = NULL;
|
|
|
|
freeze->running_time = 0;
|
|
|
|
}
|
|
|
|
|
2006-02-13 17:02:09 +00:00
|
|
|
static gboolean
|
|
|
|
gst_freeze_sink_event (GstPad * pad, GstEvent * event)
|
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstFreeze *freeze = GST_FREEZE (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_EOS:
|
|
|
|
GST_DEBUG_OBJECT (freeze, "EOS on sink pad %s",
|
|
|
|
gst_pad_get_name (GST_PAD (freeze->sinkpad)));
|
|
|
|
gst_event_unref (event);
|
|
|
|
break;
|
2006-02-20 20:52:02 +00:00
|
|
|
case GST_EVENT_NEWSEGMENT:
|
|
|
|
/* FALL TROUGH */
|
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
gst_freeze_clear_buffer (freeze);
|
|
|
|
/* FALL TROUGH */
|
2006-02-13 17:02:09 +00:00
|
|
|
default:
|
|
|
|
ret = gst_pad_event_default (GST_PAD (freeze->sinkpad), event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_object_unref (freeze);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (freeze_debug, "freeze", 0, "Stream freezer");
|
|
|
|
|
|
|
|
return gst_element_register (plugin, "freeze", GST_RANK_NONE,
|
|
|
|
GST_TYPE_FREEZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"freeze",
|
|
|
|
"Stream freezer",
|
2006-04-01 10:09:11 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
2006-02-13 17:02:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* mode: c
|
|
|
|
* file-style: k&r
|
|
|
|
* c-basic-offset: 2
|
|
|
|
* arch-tag: fb0ee62b-cf74-46c0-8e62-93b58bacc0ed
|
|
|
|
* End:
|
|
|
|
*/
|