2010-11-25 16:00:50 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2010 Texas Instruments, Inc
|
2011-12-23 19:33:45 +00:00
|
|
|
* Copyright (C) 2011 Thiago Santos <thiago.sousa.santos@collabora.com>
|
2010-11-25 16:00:50 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2010-12-14 20:23:10 +00:00
|
|
|
* SECTION:element-wrappercamerabinsrc
|
2010-11-25 16:00:50 +00:00
|
|
|
*
|
2010-12-14 20:23:10 +00:00
|
|
|
* A camera bin src element that wraps a default video source with a single
|
|
|
|
* pad into the 3pad model that camerabin2 expects.
|
2010-11-25 16:00:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2012-01-27 14:49:58 +00:00
|
|
|
/* FIXME 0.11: suppress warnings for deprecated API such as GStaticRecMutex
|
|
|
|
* with newer GLib versions (>= 2.31.0) */
|
|
|
|
#define GLIB_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
|
2011-12-22 18:19:05 +00:00
|
|
|
#include <gst/interfaces/photography.h>
|
|
|
|
|
2010-12-14 20:23:10 +00:00
|
|
|
#include "gstwrappercamerabinsrc.h"
|
2010-11-25 16:00:50 +00:00
|
|
|
#include "camerabingeneral.h"
|
|
|
|
|
2010-12-12 23:46:16 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2011-05-09 17:35:42 +00:00
|
|
|
PROP_VIDEO_SRC,
|
|
|
|
PROP_VIDEO_SRC_FILTER
|
2010-12-12 23:46:16 +00:00
|
|
|
};
|
|
|
|
|
2010-12-14 20:23:10 +00:00
|
|
|
GST_DEBUG_CATEGORY (wrapper_camera_bin_src_debug);
|
|
|
|
#define GST_CAT_DEFAULT wrapper_camera_bin_src_debug
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-12-23 19:33:45 +00:00
|
|
|
#define gst_wrapper_camera_bin_src_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstWrapperCameraBinSrc, gst_wrapper_camera_bin_src,
|
2012-01-09 07:40:48 +00:00
|
|
|
GST_TYPE_BASE_CAMERA_SRC);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2010-12-14 20:23:10 +00:00
|
|
|
static void set_capsfilter_caps (GstWrapperCameraBinSrc * self,
|
|
|
|
GstCaps * new_caps);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_dispose (GObject * object)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2010-12-29 16:18:37 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (object);
|
|
|
|
|
|
|
|
if (self->app_vid_src) {
|
|
|
|
gst_object_unref (self->app_vid_src);
|
|
|
|
self->app_vid_src = NULL;
|
|
|
|
}
|
2011-05-09 17:35:42 +00:00
|
|
|
if (self->app_vid_filter) {
|
|
|
|
gst_object_unref (self->app_vid_filter);
|
|
|
|
self->app_vid_filter = NULL;
|
|
|
|
}
|
2011-03-11 13:32:35 +00:00
|
|
|
gst_caps_replace (&self->image_capture_caps, NULL);
|
2010-12-29 16:18:37 +00:00
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_finalize (GstWrapperCameraBinSrc * self)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize ((GObject *) (self));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_set_property (GObject * object,
|
2010-11-25 16:00:50 +00:00
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (object);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-12-12 23:46:16 +00:00
|
|
|
case PROP_VIDEO_SRC:
|
2010-11-25 16:00:50 +00:00
|
|
|
if (GST_STATE (self) != GST_STATE_NULL) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, FAILED,
|
|
|
|
("camerasrc must be in NULL state when setting the video source element"),
|
|
|
|
(NULL));
|
|
|
|
} else {
|
|
|
|
if (self->app_vid_src)
|
|
|
|
gst_object_unref (self->app_vid_src);
|
|
|
|
self->app_vid_src = g_value_get_object (value);
|
2010-12-14 17:43:59 +00:00
|
|
|
if (self->app_vid_src)
|
|
|
|
gst_object_ref (self->app_vid_src);
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
break;
|
2011-05-09 17:35:42 +00:00
|
|
|
case PROP_VIDEO_SRC_FILTER:
|
|
|
|
if (GST_STATE (self) != GST_STATE_NULL) {
|
|
|
|
GST_ELEMENT_ERROR (self, CORE, FAILED,
|
|
|
|
("camerasrc must be in NULL state when setting the video source filter element"),
|
|
|
|
(NULL));
|
|
|
|
} else {
|
|
|
|
if (self->app_vid_filter)
|
|
|
|
gst_object_unref (self->app_vid_filter);
|
|
|
|
self->app_vid_filter = g_value_get_object (value);
|
|
|
|
if (self->app_vid_filter)
|
|
|
|
gst_object_ref (self->app_vid_filter);
|
|
|
|
}
|
|
|
|
break;
|
2010-11-25 16:00:50 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_get_property (GObject * object,
|
2010-11-25 16:00:50 +00:00
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (object);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
2010-12-12 23:46:16 +00:00
|
|
|
case PROP_VIDEO_SRC:
|
2010-11-25 16:00:50 +00:00
|
|
|
if (self->src_vid_src)
|
|
|
|
g_value_set_object (value, self->src_vid_src);
|
|
|
|
else
|
|
|
|
g_value_set_object (value, self->app_vid_src);
|
|
|
|
break;
|
2011-05-09 17:35:42 +00:00
|
|
|
case PROP_VIDEO_SRC_FILTER:
|
|
|
|
if (self->video_filter)
|
|
|
|
g_value_set_object (value, self->video_filter);
|
|
|
|
else
|
|
|
|
g_value_set_object (value, self->app_vid_filter);
|
|
|
|
break;
|
2010-11-25 16:00:50 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
static void
|
|
|
|
gst_wrapper_camera_bin_reset_video_src_caps (GstWrapperCameraBinSrc * self,
|
|
|
|
GstCaps * caps)
|
|
|
|
{
|
2011-02-01 14:19:29 +00:00
|
|
|
GstClock *clock;
|
|
|
|
gint64 base_time;
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Resetting src caps to %" GST_PTR_FORMAT, caps);
|
|
|
|
if (self->src_vid_src) {
|
2012-03-20 20:32:00 +00:00
|
|
|
GstCaps *old_caps;
|
|
|
|
|
|
|
|
g_object_get (G_OBJECT (self->src_filter), "caps", &old_caps, NULL);
|
|
|
|
if (gst_caps_is_equal (caps, old_caps)) {
|
|
|
|
GST_DEBUG_OBJECT (self, "old and new caps are same, do not reset it");
|
|
|
|
if (old_caps)
|
|
|
|
gst_caps_unref (old_caps);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (old_caps)
|
|
|
|
gst_caps_unref (old_caps);
|
|
|
|
|
2011-02-01 14:19:29 +00:00
|
|
|
clock = gst_element_get_clock (self->src_vid_src);
|
|
|
|
base_time = gst_element_get_base_time (self->src_vid_src);
|
|
|
|
|
2012-02-16 19:30:02 +00:00
|
|
|
/* Ideally, we should only need to get the source to READY here,
|
|
|
|
* but it seems v4l2src isn't happy with this. Putting to NULL makes
|
|
|
|
* it work.
|
|
|
|
*
|
|
|
|
* TODO fix this in v4l2src
|
|
|
|
*/
|
|
|
|
gst_element_set_state (self->src_vid_src, GST_STATE_NULL);
|
2010-12-16 03:40:25 +00:00
|
|
|
set_capsfilter_caps (self, caps);
|
2011-02-01 14:19:29 +00:00
|
|
|
|
|
|
|
self->drop_newseg = TRUE;
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Bringing source up");
|
2012-02-16 04:12:58 +00:00
|
|
|
if (!gst_element_sync_state_with_parent (self->src_vid_src)) {
|
|
|
|
GST_WARNING_OBJECT (self, "Failed to reset source caps");
|
|
|
|
gst_element_set_state (self->src_vid_src, GST_STATE_NULL);
|
|
|
|
}
|
2011-02-01 14:19:29 +00:00
|
|
|
|
2011-02-08 14:24:59 +00:00
|
|
|
if (clock) {
|
|
|
|
gst_element_set_clock (self->src_vid_src, clock);
|
|
|
|
gst_element_set_base_time (self->src_vid_src, base_time);
|
|
|
|
|
|
|
|
if (GST_IS_BIN (self->src_vid_src)) {
|
|
|
|
GstIterator *it =
|
|
|
|
gst_bin_iterate_elements (GST_BIN (self->src_vid_src));
|
2011-12-23 19:33:45 +00:00
|
|
|
GValue item = { 0 };
|
2011-02-08 14:24:59 +00:00
|
|
|
gboolean done = FALSE;
|
|
|
|
while (!done) {
|
|
|
|
switch (gst_iterator_next (it, &item)) {
|
|
|
|
case GST_ITERATOR_OK:
|
2011-12-23 19:33:45 +00:00
|
|
|
gst_element_set_base_time (GST_ELEMENT (g_value_get_object
|
|
|
|
(&item)), base_time);
|
|
|
|
g_value_unset (&item);
|
2011-02-08 14:24:59 +00:00
|
|
|
break;
|
|
|
|
case GST_ITERATOR_RESYNC:
|
|
|
|
gst_iterator_resync (it);
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_ERROR:
|
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
case GST_ITERATOR_DONE:
|
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2011-02-01 14:19:29 +00:00
|
|
|
}
|
2011-02-08 14:24:59 +00:00
|
|
|
gst_iterator_free (it);
|
2011-02-01 14:19:29 +00:00
|
|
|
}
|
|
|
|
|
2011-02-08 14:24:59 +00:00
|
|
|
gst_object_unref (clock);
|
|
|
|
}
|
2010-12-16 03:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
/**
|
2010-12-14 20:23:10 +00:00
|
|
|
* gst_wrapper_camera_bin_src_imgsrc_probe:
|
2010-11-25 16:00:50 +00:00
|
|
|
*
|
|
|
|
* Buffer probe called before sending each buffer to image queue.
|
|
|
|
*/
|
2011-12-23 19:33:45 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
gst_wrapper_camera_bin_src_imgsrc_probe (GstPad * pad, GstPadProbeInfo * info,
|
2010-11-25 16:00:50 +00:00
|
|
|
gpointer data)
|
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (data);
|
2010-12-05 14:18:09 +00:00
|
|
|
GstBaseCameraSrc *camerasrc = GST_BASE_CAMERA_SRC (data);
|
2011-12-23 19:33:45 +00:00
|
|
|
GstBuffer *buffer = GST_BUFFER (info->data);
|
|
|
|
GstPadProbeReturn ret = GST_PAD_PROBE_DROP;
|
2010-11-29 15:57:21 +00:00
|
|
|
|
2010-12-26 23:52:25 +00:00
|
|
|
GST_LOG_OBJECT (self, "Image probe, mode %d, capture count %d",
|
|
|
|
camerasrc->mode, self->image_capture_count);
|
2010-12-24 12:10:48 +00:00
|
|
|
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_lock (&camerasrc->capturing_mutex);
|
2010-11-30 12:28:50 +00:00
|
|
|
if (self->image_capture_count > 0) {
|
2011-12-23 19:33:45 +00:00
|
|
|
ret = GST_PAD_PROBE_OK;
|
2010-11-30 12:28:50 +00:00
|
|
|
self->image_capture_count--;
|
2010-12-30 03:27:03 +00:00
|
|
|
|
|
|
|
/* post preview */
|
|
|
|
/* TODO This can likely be optimized if the viewfinder caps is the same as
|
|
|
|
* the preview caps, avoiding another scaling of the same buffer. */
|
2011-02-04 17:53:49 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Posting preview for image");
|
|
|
|
gst_base_camera_src_post_preview (camerasrc, buffer);
|
2010-12-30 03:27:03 +00:00
|
|
|
|
2010-11-30 14:06:33 +00:00
|
|
|
if (self->image_capture_count == 0) {
|
2010-12-05 14:18:09 +00:00
|
|
|
gst_base_camera_src_finish_capture (camerasrc);
|
2010-11-30 14:06:33 +00:00
|
|
|
}
|
2010-11-29 15:57:21 +00:00
|
|
|
}
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_unlock (&camerasrc->capturing_mutex);
|
2010-11-29 15:57:21 +00:00
|
|
|
return ret;
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-12-14 20:23:10 +00:00
|
|
|
* gst_wrapper_camera_bin_src_vidsrc_probe:
|
2010-11-25 16:00:50 +00:00
|
|
|
*
|
|
|
|
* Buffer probe called before sending each buffer to image queue.
|
|
|
|
*/
|
2011-12-23 19:33:45 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
gst_wrapper_camera_bin_src_vidsrc_probe (GstPad * pad, GstPadProbeInfo * info,
|
2010-11-25 16:00:50 +00:00
|
|
|
gpointer data)
|
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (data);
|
2010-12-05 14:18:09 +00:00
|
|
|
GstBaseCameraSrc *camerasrc = GST_BASE_CAMERA_SRC_CAST (self);
|
2011-12-23 19:33:45 +00:00
|
|
|
GstPadProbeReturn ret = GST_PAD_PROBE_DROP;
|
|
|
|
GstBuffer *buffer = GST_BUFFER (info->data);
|
2010-11-29 18:49:26 +00:00
|
|
|
|
2010-12-24 12:10:48 +00:00
|
|
|
GST_LOG_OBJECT (self, "Video probe, mode %d, capture status %d",
|
|
|
|
camerasrc->mode, self->video_rec_status);
|
|
|
|
|
2010-11-29 18:49:26 +00:00
|
|
|
/* TODO do we want to lock for every buffer? */
|
|
|
|
/*
|
|
|
|
* Note that we can use gst_pad_push_event here because we are a buffer
|
|
|
|
* probe.
|
|
|
|
*/
|
2010-12-05 14:18:09 +00:00
|
|
|
/* TODO shouldn't access this directly */
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_lock (&camerasrc->capturing_mutex);
|
2010-11-30 12:28:50 +00:00
|
|
|
if (self->video_rec_status == GST_VIDEO_RECORDING_STATUS_DONE) {
|
|
|
|
/* NOP */
|
|
|
|
} else if (self->video_rec_status == GST_VIDEO_RECORDING_STATUS_STARTING) {
|
2011-12-19 18:16:42 +00:00
|
|
|
GstClockTime ts;
|
2011-12-30 10:41:17 +00:00
|
|
|
GstSegment segment;
|
2011-12-19 18:16:42 +00:00
|
|
|
|
2011-03-04 09:06:16 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Starting video recording");
|
2010-11-30 12:28:50 +00:00
|
|
|
self->video_rec_status = GST_VIDEO_RECORDING_STATUS_RUNNING;
|
2010-12-30 03:27:03 +00:00
|
|
|
|
2011-12-19 18:16:42 +00:00
|
|
|
ts = GST_BUFFER_TIMESTAMP (buffer);
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID (ts))
|
|
|
|
ts = 0;
|
2011-12-30 10:41:17 +00:00
|
|
|
gst_segment_init (&segment, GST_FORMAT_TIME);
|
|
|
|
segment.start = ts;
|
|
|
|
gst_pad_push_event (self->vidsrc, gst_event_new_segment (&segment));
|
2011-12-19 18:16:42 +00:00
|
|
|
|
2010-12-30 03:27:03 +00:00
|
|
|
/* post preview */
|
2011-02-04 17:53:49 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Posting preview for video");
|
|
|
|
gst_base_camera_src_post_preview (camerasrc, buffer);
|
2010-12-30 03:27:03 +00:00
|
|
|
|
2011-12-23 19:33:45 +00:00
|
|
|
ret = GST_PAD_PROBE_OK;
|
2010-11-30 12:28:50 +00:00
|
|
|
} else if (self->video_rec_status == GST_VIDEO_RECORDING_STATUS_FINISHING) {
|
|
|
|
/* send eos */
|
2010-12-03 15:12:32 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Finishing video recording, pushing eos");
|
2010-11-30 12:28:50 +00:00
|
|
|
gst_pad_push_event (pad, gst_event_new_eos ());
|
|
|
|
self->video_rec_status = GST_VIDEO_RECORDING_STATUS_DONE;
|
2010-12-05 14:18:09 +00:00
|
|
|
gst_base_camera_src_finish_capture (camerasrc);
|
2010-11-30 12:28:50 +00:00
|
|
|
} else {
|
2011-12-23 19:33:45 +00:00
|
|
|
ret = GST_PAD_PROBE_OK;
|
2010-11-29 18:49:26 +00:00
|
|
|
}
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_unlock (&camerasrc->capturing_mutex);
|
2010-11-29 18:49:26 +00:00
|
|
|
return ret;
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
static gboolean
|
2011-12-23 19:33:45 +00:00
|
|
|
gst_wrapper_camera_bin_src_event (GstPad * pad, GstObject * parent,
|
|
|
|
GstEvent * event)
|
2010-12-16 03:40:25 +00:00
|
|
|
{
|
|
|
|
GstWrapperCameraBinSrc *src =
|
|
|
|
GST_WRAPPER_CAMERA_BIN_SRC (GST_PAD_PARENT (pad));
|
|
|
|
const GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_event_get_structure (event);
|
|
|
|
if (structure && gst_structure_has_name (structure, "renegotiate")) {
|
2010-12-24 12:10:48 +00:00
|
|
|
GST_DEBUG_OBJECT (src, "Received renegotiate on pad %s",
|
|
|
|
GST_PAD_NAME (pad));
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
if (pad == src->imgsrc) {
|
|
|
|
src->image_renegotiate = TRUE;
|
|
|
|
} else if (pad == src->vidsrc) {
|
|
|
|
src->video_renegotiate = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2011-12-23 19:33:45 +00:00
|
|
|
//TODO porting
|
|
|
|
//return src->srcpad_event_func (pad, event);
|
|
|
|
return TRUE;
|
2010-12-16 03:40:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-23 19:33:45 +00:00
|
|
|
static GstPadProbeReturn
|
|
|
|
gst_wrapper_camera_src_src_event_probe (GstPad * pad, GstPadProbeInfo * info,
|
2011-02-01 14:19:29 +00:00
|
|
|
gpointer udata)
|
|
|
|
{
|
2011-12-23 19:33:45 +00:00
|
|
|
GstPadProbeReturn ret = GST_PAD_PROBE_OK;
|
2011-02-01 14:19:29 +00:00
|
|
|
GstWrapperCameraBinSrc *self = udata;
|
2011-12-23 19:33:45 +00:00
|
|
|
GstEvent *evt = GST_EVENT (info->data);
|
2011-02-01 14:19:29 +00:00
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (evt)) {
|
|
|
|
case GST_EVENT_EOS:
|
|
|
|
/* drop */
|
2011-12-23 19:33:45 +00:00
|
|
|
ret = GST_PAD_PROBE_DROP;
|
2011-02-01 14:19:29 +00:00
|
|
|
break;
|
2011-12-23 19:33:45 +00:00
|
|
|
case GST_EVENT_SEGMENT:
|
2011-02-01 14:19:29 +00:00
|
|
|
if (self->drop_newseg) {
|
2011-12-23 19:33:45 +00:00
|
|
|
ret = GST_PAD_PROBE_DROP;
|
2011-02-01 14:19:29 +00:00
|
|
|
self->drop_newseg = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-03-08 08:43:58 +00:00
|
|
|
static void
|
|
|
|
gst_wrapper_camera_bin_src_caps_cb (GObject * gobject, GParamSpec * pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GstBaseCameraSrc *bcamsrc = GST_BASE_CAMERA_SRC (user_data);
|
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (user_data);
|
|
|
|
GstPad *src_caps_src_pad;
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
GstStructure *in_st = NULL;
|
|
|
|
|
|
|
|
/* get the new caps that were set on the capsfilter that configures the
|
|
|
|
* source */
|
|
|
|
src_caps_src_pad = gst_element_get_static_pad (self->src_filter, "src");
|
2011-12-23 19:33:45 +00:00
|
|
|
caps = gst_pad_query_caps (src_caps_src_pad, NULL);
|
2011-03-08 08:43:58 +00:00
|
|
|
gst_object_unref (src_caps_src_pad);
|
|
|
|
GST_DEBUG_OBJECT (self, "src-filter caps changed to %s",
|
|
|
|
gst_caps_to_string (caps));
|
|
|
|
|
|
|
|
if (gst_caps_get_size (caps)) {
|
|
|
|
in_st = gst_caps_get_structure (caps, 0);
|
|
|
|
if (in_st) {
|
|
|
|
gst_structure_get_int (in_st, "width", &bcamsrc->width);
|
|
|
|
gst_structure_get_int (in_st, "height", &bcamsrc->height);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Source dimensions now: %dx%d", bcamsrc->width,
|
|
|
|
bcamsrc->height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update zoom */
|
|
|
|
gst_base_camera_src_setup_zoom (bcamsrc);
|
|
|
|
|
|
|
|
/* Update post-zoom capsfilter */
|
|
|
|
if (self->src_zoom_filter)
|
|
|
|
g_object_set (G_OBJECT (self->src_zoom_filter), "caps", caps, NULL);
|
|
|
|
|
|
|
|
/* drop our ref on the caps */
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
};
|
|
|
|
|
2011-03-18 14:49:12 +00:00
|
|
|
static void
|
|
|
|
gst_wrapper_camera_bin_src_max_zoom_cb (GObject * self, GParamSpec * pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GstBaseCameraSrc *bcamsrc = (GstBaseCameraSrc *) user_data;
|
|
|
|
|
|
|
|
g_object_get (self, "max-zoom", &bcamsrc->max_zoom, NULL);
|
|
|
|
g_object_notify (G_OBJECT (bcamsrc), "max-zoom");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
/**
|
2010-12-14 20:23:10 +00:00
|
|
|
* gst_wrapper_camera_bin_src_construct_pipeline:
|
2010-11-25 16:00:50 +00:00
|
|
|
* @bcamsrc: camerasrc object
|
|
|
|
*
|
|
|
|
* This function creates and links the elements of the camerasrc bin
|
2011-05-09 17:35:42 +00:00
|
|
|
* videosrc ! cspconv ! srcfilter ! cspconv ! capsfilter ! crop ! scale ! \
|
|
|
|
* capsfilter ! tee name=t
|
2010-12-24 12:10:48 +00:00
|
|
|
* t. ! ... (viewfinder pad)
|
|
|
|
* t. ! output-selector name=outsel
|
|
|
|
* outsel. ! (image pad)
|
|
|
|
* outsel. ! (video pad)
|
2010-11-25 16:00:50 +00:00
|
|
|
*
|
|
|
|
* Returns: TRUE, if elements were successfully created, FALSE otherwise
|
|
|
|
*/
|
|
|
|
static gboolean
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_construct_pipeline (GstBaseCameraSrc * bcamsrc)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (bcamsrc);
|
2010-11-25 16:00:50 +00:00
|
|
|
GstBin *cbin = GST_BIN (bcamsrc);
|
|
|
|
GstElement *tee;
|
2011-05-09 17:35:42 +00:00
|
|
|
GstElement *filter_csp;
|
|
|
|
GstElement *src_csp;
|
|
|
|
GstElement *capsfilter;
|
2010-11-25 16:00:50 +00:00
|
|
|
gboolean ret = FALSE;
|
2010-12-24 12:10:48 +00:00
|
|
|
GstPad *vf_pad;
|
|
|
|
GstPad *tee_capture_pad;
|
2011-03-08 08:43:58 +00:00
|
|
|
GstPad *src_caps_src_pad;
|
2010-12-24 12:10:48 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
if (!self->elements_created) {
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "constructing pipeline");
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
/* Add application set or default video src element */
|
|
|
|
if (!(self->src_vid_src = gst_camerabin_setup_default_element (cbin,
|
|
|
|
self->app_vid_src, "autovideosrc", DEFAULT_VIDEOSRC,
|
|
|
|
"camerasrc-real-src"))) {
|
|
|
|
self->src_vid_src = NULL;
|
2010-11-25 16:00:50 +00:00
|
|
|
goto done;
|
2011-01-27 17:39:19 +00:00
|
|
|
} else {
|
|
|
|
if (!gst_camerabin_add_element (cbin, self->src_vid_src)) {
|
|
|
|
goto done;
|
|
|
|
}
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
2011-01-27 17:39:19 +00:00
|
|
|
/* we lost the reference */
|
|
|
|
self->app_vid_src = NULL;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-03-18 14:49:12 +00:00
|
|
|
/* we listen for changes to max-zoom in the video src so that
|
|
|
|
* we can proxy them to the basecamerasrc property */
|
|
|
|
if (g_object_class_find_property (G_OBJECT_GET_CLASS (bcamsrc), "max-zoom")) {
|
|
|
|
g_signal_connect (G_OBJECT (self->src_vid_src), "notify::max-zoom",
|
|
|
|
(GCallback) gst_wrapper_camera_bin_src_max_zoom_cb, bcamsrc);
|
|
|
|
}
|
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
/* add a buffer probe to the src elemento to drop EOS from READY->NULL */
|
|
|
|
{
|
|
|
|
GstPad *pad;
|
|
|
|
pad = gst_element_get_static_pad (self->src_vid_src, "src");
|
2010-12-16 03:40:25 +00:00
|
|
|
|
2011-12-23 19:33:45 +00:00
|
|
|
self->src_event_probe_id =
|
|
|
|
gst_pad_add_probe (pad, GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM,
|
|
|
|
gst_wrapper_camera_src_src_event_probe, gst_object_ref (self),
|
|
|
|
gst_object_unref);
|
2011-01-27 17:39:19 +00:00
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
2010-12-16 03:40:25 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
if (!gst_camerabin_create_and_add_element (cbin, "ffmpegcolorspace",
|
|
|
|
"src-colorspace"))
|
|
|
|
goto done;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
if (!(self->src_filter =
|
|
|
|
gst_camerabin_create_and_add_element (cbin, "capsfilter",
|
|
|
|
"src-capsfilter")))
|
|
|
|
goto done;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-03-08 08:43:58 +00:00
|
|
|
/* attach to notify::caps on the first capsfilter and use a callback
|
|
|
|
* to recalculate the zoom properties when these caps change and to
|
|
|
|
* propagate the caps to the second capsfilter */
|
|
|
|
src_caps_src_pad = gst_element_get_static_pad (self->src_filter, "src");
|
|
|
|
g_signal_connect (src_caps_src_pad, "notify::caps",
|
|
|
|
G_CALLBACK (gst_wrapper_camera_bin_src_caps_cb), self);
|
|
|
|
gst_object_unref (src_caps_src_pad);
|
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
if (!(self->src_zoom_crop =
|
|
|
|
gst_camerabin_create_and_add_element (cbin, "videocrop",
|
|
|
|
"zoom-crop")))
|
|
|
|
goto done;
|
|
|
|
if (!(self->src_zoom_scale =
|
|
|
|
gst_camerabin_create_and_add_element (cbin, "videoscale",
|
|
|
|
"zoom-scale")))
|
|
|
|
goto done;
|
|
|
|
if (!(self->src_zoom_filter =
|
|
|
|
gst_camerabin_create_and_add_element (cbin, "capsfilter",
|
|
|
|
"zoom-capsfilter")))
|
|
|
|
goto done;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
if (!(tee =
|
|
|
|
gst_camerabin_create_and_add_element (cbin, "tee",
|
|
|
|
"camerasrc-tee")))
|
|
|
|
goto done;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
/* viewfinder pad */
|
2011-11-04 11:31:19 +00:00
|
|
|
vf_pad = gst_element_get_request_pad (tee, "src_%u");
|
2011-01-27 17:39:19 +00:00
|
|
|
g_object_set (tee, "alloc-pad", vf_pad, NULL);
|
2011-07-30 13:12:31 +00:00
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD (self->vfsrc), vf_pad);
|
2011-01-27 17:39:19 +00:00
|
|
|
gst_object_unref (vf_pad);
|
2010-12-20 21:09:26 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
/* image/video pad from tee */
|
2011-11-04 11:31:19 +00:00
|
|
|
tee_capture_pad = gst_element_get_request_pad (tee, "src_%u");
|
2010-12-24 12:10:48 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
self->output_selector =
|
|
|
|
gst_element_factory_make ("output-selector", "outsel");
|
|
|
|
g_object_set (self->output_selector, "pad-negotiation-mode", 0, NULL);
|
|
|
|
gst_bin_add (GST_BIN (self), self->output_selector);
|
|
|
|
{
|
|
|
|
GstPad *pad = gst_element_get_static_pad (self->output_selector, "sink");
|
2010-12-24 12:10:48 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
/* check return TODO */
|
|
|
|
gst_pad_link (tee_capture_pad, pad);
|
|
|
|
gst_object_unref (pad);
|
|
|
|
}
|
|
|
|
gst_object_unref (tee_capture_pad);
|
|
|
|
|
|
|
|
/* Create the 2 output pads for video and image */
|
|
|
|
self->outsel_vidpad =
|
2011-11-04 11:31:19 +00:00
|
|
|
gst_element_get_request_pad (self->output_selector, "src_%u");
|
2011-01-27 17:39:19 +00:00
|
|
|
self->outsel_imgpad =
|
2011-11-04 11:31:19 +00:00
|
|
|
gst_element_get_request_pad (self->output_selector, "src_%u");
|
2011-01-27 17:39:19 +00:00
|
|
|
|
|
|
|
g_assert (self->outsel_vidpad != NULL);
|
|
|
|
g_assert (self->outsel_imgpad != NULL);
|
|
|
|
|
2011-12-23 19:33:45 +00:00
|
|
|
gst_pad_add_probe (self->outsel_imgpad, GST_PAD_PROBE_TYPE_BUFFER,
|
|
|
|
gst_wrapper_camera_bin_src_imgsrc_probe, gst_object_ref (self),
|
|
|
|
gst_object_unref);
|
|
|
|
gst_pad_add_probe (self->outsel_vidpad, GST_PAD_PROBE_TYPE_BUFFER,
|
|
|
|
gst_wrapper_camera_bin_src_vidsrc_probe, gst_object_ref (self),
|
|
|
|
gst_object_unref);
|
2011-01-27 17:39:19 +00:00
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD (self->imgsrc),
|
|
|
|
self->outsel_imgpad);
|
|
|
|
gst_ghost_pad_set_target (GST_GHOST_PAD (self->vidsrc),
|
|
|
|
self->outsel_vidpad);
|
|
|
|
|
|
|
|
if (bcamsrc->mode == MODE_IMAGE) {
|
|
|
|
g_object_set (self->output_selector, "active-pad", self->outsel_imgpad,
|
|
|
|
NULL);
|
|
|
|
} else {
|
|
|
|
g_object_set (self->output_selector, "active-pad", self->outsel_vidpad,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2011-07-30 13:12:31 +00:00
|
|
|
|
2011-01-27 17:39:19 +00:00
|
|
|
|
|
|
|
gst_pad_set_active (self->vfsrc, TRUE);
|
|
|
|
gst_pad_set_active (self->imgsrc, TRUE); /* XXX ??? */
|
|
|
|
gst_pad_set_active (self->vidsrc, TRUE); /* XXX ??? */
|
2010-12-24 12:10:48 +00:00
|
|
|
}
|
2011-05-09 17:35:42 +00:00
|
|
|
|
|
|
|
/* Do this even if pipeline is constructed */
|
|
|
|
|
|
|
|
if (self->video_filter) {
|
|
|
|
/* check if we need to replace the current one */
|
|
|
|
if (self->video_filter != self->app_vid_filter) {
|
|
|
|
gst_bin_remove (cbin, self->video_filter);
|
|
|
|
gst_object_unref (self->video_filter);
|
|
|
|
self->video_filter = NULL;
|
|
|
|
filter_csp = gst_bin_get_by_name (cbin, "filter-colorspace");
|
|
|
|
gst_bin_remove (cbin, filter_csp);
|
|
|
|
gst_object_unref (filter_csp);
|
|
|
|
filter_csp = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!self->video_filter) {
|
|
|
|
if (self->app_vid_filter) {
|
|
|
|
self->video_filter = gst_object_ref (self->app_vid_filter);
|
|
|
|
filter_csp = gst_element_factory_make ("ffmpegcolorspace",
|
|
|
|
"filter-colorspace");
|
|
|
|
gst_bin_add_many (cbin, self->video_filter, filter_csp, NULL);
|
|
|
|
src_csp = gst_bin_get_by_name (cbin, "src-colorspace");
|
|
|
|
capsfilter = gst_bin_get_by_name (cbin, "src-capsfilter");
|
|
|
|
if (gst_pad_is_linked (gst_element_get_static_pad (src_csp, "src")))
|
|
|
|
gst_element_unlink (src_csp, capsfilter);
|
|
|
|
if (!gst_element_link_many (src_csp, self->video_filter, filter_csp,
|
|
|
|
capsfilter, NULL))
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
2010-11-25 16:00:50 +00:00
|
|
|
ret = TRUE;
|
2010-12-24 12:10:48 +00:00
|
|
|
self->elements_created = TRUE;
|
2010-11-25 16:00:50 +00:00
|
|
|
done:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
copy_missing_fields (GQuark field_id, const GValue * value, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstStructure *st = (GstStructure *) user_data;
|
|
|
|
const GValue *val = gst_structure_id_get_value (st, field_id);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (val == NULL)) {
|
|
|
|
gst_structure_id_set_value (st, field_id, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* adapt_image_capture:
|
|
|
|
* @self: camerasrc object
|
|
|
|
* @in_caps: caps object that describes incoming image format
|
|
|
|
*
|
|
|
|
* Adjust capsfilters and crop according image capture caps if necessary.
|
|
|
|
* The captured image format from video source might be different from
|
|
|
|
* what application requested, so we can try to fix that in camerabin.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
adapt_image_capture (GstWrapperCameraBinSrc * self, GstCaps * in_caps)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
GstBaseCameraSrc *bcamsrc = GST_BASE_CAMERA_SRC (self);
|
|
|
|
GstStructure *in_st, *new_st, *req_st;
|
|
|
|
gint in_width = 0, in_height = 0, req_width = 0, req_height = 0, crop = 0;
|
|
|
|
gdouble ratio_w, ratio_h;
|
|
|
|
GstCaps *filter_caps = NULL;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "in caps: %" GST_PTR_FORMAT, in_caps);
|
|
|
|
GST_LOG_OBJECT (self, "requested caps: %" GST_PTR_FORMAT,
|
|
|
|
self->image_capture_caps);
|
|
|
|
|
|
|
|
in_st = gst_caps_get_structure (in_caps, 0);
|
|
|
|
gst_structure_get_int (in_st, "width", &in_width);
|
|
|
|
gst_structure_get_int (in_st, "height", &in_height);
|
|
|
|
|
|
|
|
req_st = gst_caps_get_structure (self->image_capture_caps, 0);
|
|
|
|
gst_structure_get_int (req_st, "width", &req_width);
|
|
|
|
gst_structure_get_int (req_st, "height", &req_height);
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (self, "we requested %dx%d, and got %dx%d", req_width,
|
|
|
|
req_height, in_width, in_height);
|
|
|
|
|
|
|
|
new_st = gst_structure_copy (req_st);
|
|
|
|
/* If new fields have been added, we need to copy them */
|
|
|
|
gst_structure_foreach (in_st, copy_missing_fields, new_st);
|
|
|
|
|
2010-12-06 13:06:37 +00:00
|
|
|
gst_structure_set (new_st, "width", G_TYPE_INT, in_width, "height",
|
|
|
|
G_TYPE_INT, in_height, NULL);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "new image capture caps: %" GST_PTR_FORMAT, new_st);
|
|
|
|
|
|
|
|
/* Crop if requested aspect ratio differs from incoming frame aspect ratio */
|
|
|
|
if (self->src_zoom_crop) {
|
|
|
|
|
|
|
|
ratio_w = (gdouble) in_width / req_width;
|
|
|
|
ratio_h = (gdouble) in_height / req_height;
|
|
|
|
|
|
|
|
if (ratio_w < ratio_h) {
|
|
|
|
crop = in_height - (req_height * ratio_w);
|
|
|
|
self->base_crop_top = crop / 2;
|
|
|
|
self->base_crop_bottom = crop / 2;
|
|
|
|
} else {
|
|
|
|
crop = in_width - (req_width * ratio_h);
|
|
|
|
self->base_crop_left = crop / 2;
|
|
|
|
self->base_crop_right += crop / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (self,
|
|
|
|
"setting base crop: left:%d, right:%d, top:%d, bottom:%d",
|
|
|
|
self->base_crop_left, self->base_crop_right, self->base_crop_top,
|
|
|
|
self->base_crop_bottom);
|
|
|
|
g_object_set (G_OBJECT (self->src_zoom_crop),
|
|
|
|
"top", self->base_crop_top,
|
|
|
|
"bottom", self->base_crop_bottom,
|
|
|
|
"left", self->base_crop_left, "right", self->base_crop_right, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update capsfilters */
|
2010-12-29 16:18:37 +00:00
|
|
|
if (self->image_capture_caps) {
|
|
|
|
gst_caps_unref (self->image_capture_caps);
|
|
|
|
}
|
|
|
|
self->image_capture_caps = gst_caps_new_full (new_st, NULL);
|
2010-11-25 16:00:50 +00:00
|
|
|
set_capsfilter_caps (self, self->image_capture_caps);
|
|
|
|
|
|
|
|
/* Adjust the capsfilter before crop and videoscale elements if necessary */
|
|
|
|
if (in_width == bcamsrc->width && in_height == bcamsrc->height) {
|
|
|
|
GST_DEBUG_OBJECT (self, "no adaptation with resolution needed");
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (self,
|
|
|
|
"changing %" GST_PTR_FORMAT " from %dx%d to %dx%d", self->src_filter,
|
|
|
|
bcamsrc->width, bcamsrc->height, in_width, in_height);
|
|
|
|
/* Apply the width and height to filter caps */
|
|
|
|
g_object_get (G_OBJECT (self->src_filter), "caps", &filter_caps, NULL);
|
|
|
|
filter_caps = gst_caps_make_writable (filter_caps);
|
|
|
|
gst_caps_set_simple (filter_caps, "width", G_TYPE_INT, in_width, "height",
|
|
|
|
G_TYPE_INT, in_height, NULL);
|
|
|
|
g_object_set (G_OBJECT (self->src_filter), "caps", filter_caps, NULL);
|
|
|
|
gst_caps_unref (filter_caps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* img_capture_prepared:
|
|
|
|
* @data: camerasrc object
|
|
|
|
* @caps: caps describing the prepared image format
|
|
|
|
*
|
|
|
|
* Callback which is called after image capture has been prepared.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
img_capture_prepared (gpointer data, GstCaps * caps)
|
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (data);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
GST_INFO_OBJECT (self, "image capture prepared");
|
|
|
|
|
|
|
|
/* It is possible we are about to get something else that we requested */
|
|
|
|
if (!gst_caps_is_equal (self->image_capture_caps, caps)) {
|
|
|
|
adapt_image_capture (self, caps);
|
|
|
|
} else {
|
|
|
|
set_capsfilter_caps (self, self->image_capture_caps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static gboolean
|
2010-12-14 20:23:10 +00:00
|
|
|
start_image_capture (GstWrapperCameraBinSrc * self)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
GstBaseCameraSrc *bcamsrc = GST_BASE_CAMERA_SRC (self);
|
2011-12-22 18:19:05 +00:00
|
|
|
GstPhotography *photography =
|
|
|
|
(GstPhotography *) gst_bin_get_by_interface (GST_BIN_CAST (bcamsrc),
|
|
|
|
GST_TYPE_PHOTOGRAPHY);
|
2010-12-15 17:07:15 +00:00
|
|
|
gboolean ret = FALSE;
|
2010-12-16 03:40:25 +00:00
|
|
|
GstCaps *caps;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "Starting image capture");
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
if (self->image_renegotiate) {
|
|
|
|
/* clean capsfilter caps so they don't interfere here */
|
|
|
|
g_object_set (self->src_filter, "caps", NULL, NULL);
|
|
|
|
if (self->src_zoom_filter)
|
|
|
|
g_object_set (self->src_zoom_filter, "caps", NULL, NULL);
|
|
|
|
|
|
|
|
caps = gst_pad_get_allowed_caps (self->imgsrc);
|
|
|
|
|
|
|
|
gst_caps_replace (&self->image_capture_caps, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
self->image_renegotiate = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (photography) {
|
2010-11-25 16:00:50 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "prepare image capture caps %" GST_PTR_FORMAT,
|
|
|
|
self->image_capture_caps);
|
|
|
|
ret = gst_photography_prepare_for_capture (photography,
|
|
|
|
(GstPhotoCapturePrepared) img_capture_prepared,
|
|
|
|
self->image_capture_caps, self);
|
|
|
|
} else {
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_unlock (&bcamsrc->capturing_mutex);
|
2010-12-16 03:40:25 +00:00
|
|
|
gst_wrapper_camera_bin_reset_video_src_caps (self,
|
|
|
|
self->image_capture_caps);
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_lock (&bcamsrc->capturing_mutex);
|
2010-11-25 16:00:50 +00:00
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_set_mode (GstBaseCameraSrc * bcamsrc,
|
|
|
|
GstCameraBinMode mode)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2011-12-22 18:19:05 +00:00
|
|
|
GstPhotography *photography =
|
|
|
|
(GstPhotography *) gst_bin_get_by_interface (GST_BIN_CAST (bcamsrc),
|
|
|
|
GST_TYPE_PHOTOGRAPHY);
|
2010-12-17 01:49:24 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (bcamsrc);
|
|
|
|
|
2010-12-24 12:10:48 +00:00
|
|
|
if (self->output_selector) {
|
|
|
|
if (mode == MODE_IMAGE) {
|
2011-02-09 22:14:13 +00:00
|
|
|
self->image_renegotiate = TRUE;
|
2010-12-24 12:10:48 +00:00
|
|
|
g_object_set (self->output_selector, "active-pad", self->outsel_imgpad,
|
|
|
|
NULL);
|
|
|
|
} else {
|
2011-02-09 22:14:13 +00:00
|
|
|
self->video_renegotiate = TRUE;
|
2010-12-24 12:10:48 +00:00
|
|
|
g_object_set (self->output_selector, "active-pad", self->outsel_vidpad,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
2011-02-09 22:14:13 +00:00
|
|
|
self->mode = mode;
|
2010-12-24 12:10:48 +00:00
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
if (photography) {
|
|
|
|
if (g_object_class_find_property (G_OBJECT_GET_CLASS (photography),
|
|
|
|
"capture-mode")) {
|
|
|
|
g_object_set (G_OBJECT (photography), "capture-mode", mode, NULL);
|
|
|
|
}
|
2010-12-16 03:40:25 +00:00
|
|
|
} else {
|
|
|
|
gst_wrapper_camera_bin_reset_video_src_caps (self, NULL);
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
2010-12-16 03:40:25 +00:00
|
|
|
|
2010-11-30 12:28:50 +00:00
|
|
|
return TRUE;
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-03-08 08:43:58 +00:00
|
|
|
set_videosrc_zoom (GstWrapperCameraBinSrc * self, gfloat zoom)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
if (g_object_class_find_property (G_OBJECT_GET_CLASS (self->src_vid_src),
|
|
|
|
"zoom")) {
|
2011-03-08 08:43:58 +00:00
|
|
|
g_object_set (G_OBJECT (self->src_vid_src), "zoom", zoom, NULL);
|
2010-11-25 16:00:50 +00:00
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-03-08 08:43:58 +00:00
|
|
|
set_element_zoom (GstWrapperCameraBinSrc * self, gfloat zoom)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
GstBaseCameraSrc *bcamsrc = GST_BASE_CAMERA_SRC (self);
|
|
|
|
gint w2_crop = 0, h2_crop = 0;
|
|
|
|
GstPad *pad_zoom_sink = NULL;
|
|
|
|
gint left = self->base_crop_left;
|
|
|
|
gint right = self->base_crop_right;
|
|
|
|
gint top = self->base_crop_top;
|
|
|
|
gint bottom = self->base_crop_bottom;
|
|
|
|
|
|
|
|
if (self->src_zoom_crop) {
|
|
|
|
/* Update capsfilters to apply the zoom */
|
2011-03-08 08:43:58 +00:00
|
|
|
GST_INFO_OBJECT (self, "zoom: %f, orig size: %dx%d", zoom,
|
2010-11-25 16:00:50 +00:00
|
|
|
bcamsrc->width, bcamsrc->height);
|
|
|
|
|
|
|
|
if (zoom != ZOOM_1X) {
|
2011-03-08 08:43:58 +00:00
|
|
|
w2_crop = (bcamsrc->width - (gint) (bcamsrc->width * ZOOM_1X / zoom)) / 2;
|
|
|
|
h2_crop =
|
|
|
|
(bcamsrc->height - (gint) (bcamsrc->height * ZOOM_1X / zoom)) / 2;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
left += w2_crop;
|
|
|
|
right += w2_crop;
|
|
|
|
top += h2_crop;
|
|
|
|
bottom += h2_crop;
|
|
|
|
|
|
|
|
/* force number of pixels cropped from left to be even, to avoid slow code
|
|
|
|
* path on videoscale */
|
|
|
|
left &= 0xFFFE;
|
|
|
|
}
|
|
|
|
|
|
|
|
pad_zoom_sink = gst_element_get_static_pad (self->src_zoom_crop, "sink");
|
|
|
|
|
|
|
|
GST_INFO_OBJECT (self,
|
|
|
|
"sw cropping: left:%d, right:%d, top:%d, bottom:%d", left, right, top,
|
|
|
|
bottom);
|
|
|
|
|
|
|
|
GST_PAD_STREAM_LOCK (pad_zoom_sink);
|
|
|
|
g_object_set (self->src_zoom_crop, "left", left, "right", right, "top",
|
|
|
|
top, "bottom", bottom, NULL);
|
|
|
|
GST_PAD_STREAM_UNLOCK (pad_zoom_sink);
|
|
|
|
gst_object_unref (pad_zoom_sink);
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-03-08 08:43:58 +00:00
|
|
|
gst_wrapper_camera_bin_src_set_zoom (GstBaseCameraSrc * bcamsrc, gfloat zoom)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (bcamsrc);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2011-03-08 08:43:58 +00:00
|
|
|
GST_INFO_OBJECT (self, "setting zoom %f", zoom);
|
2010-11-25 16:00:50 +00:00
|
|
|
|
|
|
|
if (set_videosrc_zoom (self, zoom)) {
|
|
|
|
set_element_zoom (self, ZOOM_1X);
|
|
|
|
GST_INFO_OBJECT (self, "zoom set using videosrc");
|
|
|
|
} else if (set_element_zoom (self, zoom)) {
|
|
|
|
GST_INFO_OBJECT (self, "zoom set using gst elements");
|
|
|
|
} else {
|
|
|
|
GST_INFO_OBJECT (self, "setting zoom failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update_aspect_filter:
|
|
|
|
* @self: camerasrc object
|
|
|
|
* @new_caps: new caps of next buffers arriving to view finder sink element
|
|
|
|
*
|
|
|
|
* Updates aspect ratio capsfilter to maintain aspect ratio, if we need to
|
|
|
|
* scale frames for showing them in view finder.
|
|
|
|
*/
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
update_aspect_filter (GstWrapperCameraBinSrc * self, GstCaps * new_caps)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
// XXX why not instead add a preserve-aspect-ratio property to videoscale?
|
|
|
|
#if 0
|
|
|
|
if (camera->flags & GST_CAMERABIN_FLAG_VIEWFINDER_SCALE) {
|
|
|
|
GstCaps *sink_caps, *ar_caps;
|
|
|
|
GstStructure *st;
|
|
|
|
gint in_w = 0, in_h = 0, sink_w = 0, sink_h = 0, target_w = 0, target_h = 0;
|
|
|
|
gdouble ratio_w, ratio_h;
|
|
|
|
GstPad *sink_pad;
|
|
|
|
const GValue *range;
|
|
|
|
|
|
|
|
sink_pad = gst_element_get_static_pad (camera->view_sink, "sink");
|
|
|
|
|
|
|
|
if (sink_pad) {
|
|
|
|
sink_caps = gst_pad_get_caps (sink_pad);
|
|
|
|
gst_object_unref (sink_pad);
|
|
|
|
if (sink_caps) {
|
|
|
|
if (!gst_caps_is_any (sink_caps)) {
|
|
|
|
GST_DEBUG_OBJECT (camera, "sink element caps %" GST_PTR_FORMAT,
|
|
|
|
sink_caps);
|
|
|
|
/* Get maximum resolution that view finder sink accepts */
|
|
|
|
st = gst_caps_get_structure (sink_caps, 0);
|
|
|
|
if (gst_structure_has_field_typed (st, "width", GST_TYPE_INT_RANGE)) {
|
|
|
|
range = gst_structure_get_value (st, "width");
|
|
|
|
sink_w = gst_value_get_int_range_max (range);
|
|
|
|
}
|
|
|
|
if (gst_structure_has_field_typed (st, "height", GST_TYPE_INT_RANGE)) {
|
|
|
|
range = gst_structure_get_value (st, "height");
|
|
|
|
sink_h = gst_value_get_int_range_max (range);
|
|
|
|
}
|
|
|
|
GST_DEBUG_OBJECT (camera, "sink element accepts max %dx%d", sink_w,
|
|
|
|
sink_h);
|
|
|
|
|
|
|
|
/* Get incoming frames' resolution */
|
|
|
|
if (sink_h && sink_w) {
|
|
|
|
st = gst_caps_get_structure (new_caps, 0);
|
|
|
|
gst_structure_get_int (st, "width", &in_w);
|
|
|
|
gst_structure_get_int (st, "height", &in_h);
|
|
|
|
GST_DEBUG_OBJECT (camera, "new caps with %dx%d", in_w, in_h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_caps_unref (sink_caps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we get bigger frames than view finder sink accepts, then we scale.
|
|
|
|
If we scale we need to adjust aspect ratio capsfilter caps in order
|
|
|
|
to maintain aspect ratio while scaling. */
|
|
|
|
if (in_w && in_h && (in_w > sink_w || in_h > sink_h)) {
|
|
|
|
ratio_w = (gdouble) sink_w / in_w;
|
|
|
|
ratio_h = (gdouble) sink_h / in_h;
|
|
|
|
|
|
|
|
if (ratio_w < ratio_h) {
|
|
|
|
target_w = sink_w;
|
|
|
|
target_h = (gint) (ratio_w * in_h);
|
|
|
|
} else {
|
|
|
|
target_w = (gint) (ratio_h * in_w);
|
|
|
|
target_h = sink_h;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (camera, "setting %dx%d filter to maintain aspect ratio",
|
|
|
|
target_w, target_h);
|
|
|
|
ar_caps = gst_caps_copy (new_caps);
|
|
|
|
gst_caps_set_simple (ar_caps, "width", G_TYPE_INT, target_w, "height",
|
|
|
|
G_TYPE_INT, target_h, NULL);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (camera, "no scaling");
|
|
|
|
ar_caps = new_caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (camera, "aspect ratio filter caps %" GST_PTR_FORMAT,
|
|
|
|
ar_caps);
|
|
|
|
g_object_set (G_OBJECT (camera->aspect_filter), "caps", ar_caps, NULL);
|
|
|
|
if (ar_caps != new_caps)
|
|
|
|
gst_caps_unref (ar_caps);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set_capsfilter_caps:
|
|
|
|
* @self: camerasrc object
|
|
|
|
* @new_caps: pointer to caps object to set
|
|
|
|
*
|
|
|
|
* Set given caps to camerabin capsfilters.
|
|
|
|
*/
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
set_capsfilter_caps (GstWrapperCameraBinSrc * self, GstCaps * new_caps)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
GST_INFO_OBJECT (self, "new_caps:%" GST_PTR_FORMAT, new_caps);
|
|
|
|
|
|
|
|
/* Update zoom */
|
|
|
|
gst_base_camera_src_setup_zoom (GST_BASE_CAMERA_SRC (self));
|
|
|
|
|
|
|
|
/* Update capsfilters */
|
|
|
|
g_object_set (G_OBJECT (self->src_filter), "caps", new_caps, NULL);
|
|
|
|
if (self->src_zoom_filter)
|
|
|
|
g_object_set (G_OBJECT (self->src_zoom_filter), "caps", new_caps, NULL);
|
|
|
|
update_aspect_filter (self, new_caps);
|
2011-03-08 08:43:58 +00:00
|
|
|
GST_INFO_OBJECT (self, "updated");
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
2010-12-05 14:18:09 +00:00
|
|
|
static gboolean
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_start_capture (GstBaseCameraSrc * camerasrc)
|
2010-11-30 12:28:50 +00:00
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *src = GST_WRAPPER_CAMERA_BIN_SRC (camerasrc);
|
2010-11-30 12:28:50 +00:00
|
|
|
|
2010-12-29 16:18:37 +00:00
|
|
|
/* TODO should we access this directly? Maybe a macro is better? */
|
2010-12-17 01:49:24 +00:00
|
|
|
if (src->mode == MODE_IMAGE) {
|
2010-11-30 12:28:50 +00:00
|
|
|
start_image_capture (src);
|
2010-12-24 12:10:48 +00:00
|
|
|
src->image_capture_count = 1;
|
2010-12-17 01:49:24 +00:00
|
|
|
} else if (src->mode == MODE_VIDEO) {
|
2010-12-26 23:52:25 +00:00
|
|
|
GstCaps *caps = NULL;
|
|
|
|
|
|
|
|
if (src->video_renegotiate) {
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_unlock (&camerasrc->capturing_mutex);
|
2011-03-10 14:38:18 +00:00
|
|
|
gst_wrapper_camera_bin_reset_video_src_caps (src, NULL);
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_lock (&camerasrc->capturing_mutex);
|
2011-03-10 14:38:18 +00:00
|
|
|
|
2010-12-26 23:52:25 +00:00
|
|
|
/* clean capsfilter caps so they don't interfere here */
|
|
|
|
g_object_set (src->src_filter, "caps", NULL, NULL);
|
|
|
|
if (src->src_zoom_filter)
|
|
|
|
g_object_set (src->src_zoom_filter, "caps", NULL, NULL);
|
|
|
|
|
2011-02-09 22:09:24 +00:00
|
|
|
GST_DEBUG_OBJECT (src, "Getting allowed videosrc caps");
|
2010-12-26 23:52:25 +00:00
|
|
|
caps = gst_pad_get_allowed_caps (src->vidsrc);
|
2011-02-09 22:09:24 +00:00
|
|
|
GST_DEBUG_OBJECT (src, "Video src caps %" GST_PTR_FORMAT, caps);
|
2010-12-26 23:52:25 +00:00
|
|
|
|
|
|
|
src->video_renegotiate = FALSE;
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_unlock (&camerasrc->capturing_mutex);
|
2010-12-26 23:52:25 +00:00
|
|
|
gst_wrapper_camera_bin_reset_video_src_caps (src, caps);
|
2012-01-19 10:34:26 +00:00
|
|
|
g_mutex_lock (&camerasrc->capturing_mutex);
|
2010-12-26 23:52:25 +00:00
|
|
|
gst_caps_unref (caps);
|
|
|
|
}
|
2010-11-30 12:28:50 +00:00
|
|
|
if (src->video_rec_status == GST_VIDEO_RECORDING_STATUS_DONE) {
|
|
|
|
src->video_rec_status = GST_VIDEO_RECORDING_STATUS_STARTING;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_assert_not_reached ();
|
2010-12-05 14:18:09 +00:00
|
|
|
return FALSE;
|
2010-11-30 12:28:50 +00:00
|
|
|
}
|
2010-12-05 14:18:09 +00:00
|
|
|
return TRUE;
|
2010-11-30 12:28:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_stop_capture (GstBaseCameraSrc * camerasrc)
|
2010-11-30 12:28:50 +00:00
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
GstWrapperCameraBinSrc *src = GST_WRAPPER_CAMERA_BIN_SRC (camerasrc);
|
2010-12-05 14:18:09 +00:00
|
|
|
|
|
|
|
/* TODO shoud we access this directly? Maybe a macro is better? */
|
2010-12-17 01:49:24 +00:00
|
|
|
if (src->mode == MODE_VIDEO) {
|
2010-11-30 12:28:50 +00:00
|
|
|
if (src->video_rec_status == GST_VIDEO_RECORDING_STATUS_STARTING) {
|
2010-12-03 15:12:32 +00:00
|
|
|
GST_DEBUG_OBJECT (src, "Aborting, had not started recording");
|
2010-11-30 12:28:50 +00:00
|
|
|
src->video_rec_status = GST_VIDEO_RECORDING_STATUS_DONE;
|
|
|
|
|
|
|
|
} else if (src->video_rec_status == GST_VIDEO_RECORDING_STATUS_RUNNING) {
|
|
|
|
GST_DEBUG_OBJECT (src, "Marking video recording as finishing");
|
|
|
|
src->video_rec_status = GST_VIDEO_RECORDING_STATUS_FINISHING;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
src->image_capture_count = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-30 03:27:03 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_wrapper_camera_bin_src_change_state (GstElement * element,
|
|
|
|
GstStateChange trans)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
GstWrapperCameraBinSrc *self = GST_WRAPPER_CAMERA_BIN_SRC (element);
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, trans);
|
|
|
|
|
2011-01-10 18:19:04 +00:00
|
|
|
if (ret == GST_STATE_CHANGE_FAILURE)
|
|
|
|
goto end;
|
|
|
|
|
2010-12-30 03:27:03 +00:00
|
|
|
switch (trans) {
|
2011-02-01 14:19:29 +00:00
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2011-02-09 22:14:13 +00:00
|
|
|
self->video_renegotiate = TRUE;
|
|
|
|
self->image_renegotiate = TRUE;
|
2011-02-01 14:19:29 +00:00
|
|
|
self->drop_newseg = FALSE;
|
|
|
|
break;
|
2010-12-30 03:27:03 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-10 18:19:04 +00:00
|
|
|
end:
|
2010-12-30 03:27:03 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
static void
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_class_init (GstWrapperCameraBinSrcClass * klass)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2010-12-30 03:27:03 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2010-11-25 16:00:50 +00:00
|
|
|
GstBaseCameraSrcClass *gstbasecamerasrc_class;
|
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2010-12-30 03:27:03 +00:00
|
|
|
gstelement_class = GST_ELEMENT_CLASS (klass);
|
2010-11-25 16:00:50 +00:00
|
|
|
gstbasecamerasrc_class = GST_BASE_CAMERA_SRC_CLASS (klass);
|
|
|
|
|
2010-12-14 20:23:10 +00:00
|
|
|
gobject_class->dispose = gst_wrapper_camera_bin_src_dispose;
|
|
|
|
gobject_class->finalize =
|
|
|
|
(GObjectFinalizeFunc) gst_wrapper_camera_bin_src_finalize;
|
|
|
|
gobject_class->set_property = gst_wrapper_camera_bin_src_set_property;
|
|
|
|
gobject_class->get_property = gst_wrapper_camera_bin_src_get_property;
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2010-11-30 12:28:50 +00:00
|
|
|
/* g_object_class_install_property .... */
|
2010-12-14 17:43:59 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_VIDEO_SRC,
|
2011-05-26 02:29:25 +00:00
|
|
|
g_param_spec_object ("video-source", "Video source",
|
2010-12-14 17:43:59 +00:00
|
|
|
"The video source element to be used",
|
|
|
|
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2011-05-09 17:35:42 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_VIDEO_SRC_FILTER,
|
|
|
|
g_param_spec_object ("video-source-filter", "Video source filter",
|
|
|
|
"Optional video source filter element",
|
|
|
|
GST_TYPE_ELEMENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2010-11-25 16:00:50 +00:00
|
|
|
|
2010-12-30 03:27:03 +00:00
|
|
|
gstelement_class->change_state = gst_wrapper_camera_bin_src_change_state;
|
|
|
|
|
2010-11-25 16:00:50 +00:00
|
|
|
gstbasecamerasrc_class->construct_pipeline =
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_construct_pipeline;
|
|
|
|
gstbasecamerasrc_class->set_zoom = gst_wrapper_camera_bin_src_set_zoom;
|
|
|
|
gstbasecamerasrc_class->set_mode = gst_wrapper_camera_bin_src_set_mode;
|
|
|
|
gstbasecamerasrc_class->start_capture =
|
|
|
|
gst_wrapper_camera_bin_src_start_capture;
|
|
|
|
gstbasecamerasrc_class->stop_capture =
|
|
|
|
gst_wrapper_camera_bin_src_stop_capture;
|
2011-12-23 19:33:45 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (wrapper_camera_bin_src_debug, "wrappercamerabinsrc",
|
|
|
|
0, "wrapper camera src");
|
|
|
|
|
|
|
|
gst_element_class_set_details_simple (gstelement_class,
|
|
|
|
"Wrapper camera src element for camerabin2", "Source/Video",
|
|
|
|
"Wrapper camera src element for camerabin2",
|
|
|
|
"Thiago Santos <thiago.sousa.santos@collabora.com>");
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-12-23 19:33:45 +00:00
|
|
|
gst_wrapper_camera_bin_src_init (GstWrapperCameraBinSrc * self)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2010-12-07 22:40:28 +00:00
|
|
|
self->vfsrc =
|
|
|
|
gst_ghost_pad_new_no_target (GST_BASE_CAMERA_SRC_VIEWFINDER_PAD_NAME,
|
|
|
|
GST_PAD_SRC);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (self), self->vfsrc);
|
|
|
|
|
|
|
|
self->imgsrc =
|
|
|
|
gst_ghost_pad_new_no_target (GST_BASE_CAMERA_SRC_IMAGE_PAD_NAME,
|
|
|
|
GST_PAD_SRC);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (self), self->imgsrc);
|
|
|
|
|
|
|
|
self->vidsrc =
|
|
|
|
gst_ghost_pad_new_no_target (GST_BASE_CAMERA_SRC_VIDEO_PAD_NAME,
|
|
|
|
GST_PAD_SRC);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (self), self->vidsrc);
|
|
|
|
|
2010-12-16 03:40:25 +00:00
|
|
|
self->srcpad_event_func = GST_PAD_EVENTFUNC (self->vfsrc);
|
|
|
|
|
|
|
|
gst_pad_set_event_function (self->imgsrc, gst_wrapper_camera_bin_src_event);
|
|
|
|
gst_pad_set_event_function (self->vidsrc, gst_wrapper_camera_bin_src_event);
|
|
|
|
gst_pad_set_event_function (self->vfsrc, gst_wrapper_camera_bin_src_event);
|
2010-12-07 22:40:28 +00:00
|
|
|
|
2010-11-29 18:49:26 +00:00
|
|
|
/* TODO where are variables reset? */
|
2010-11-30 12:28:50 +00:00
|
|
|
self->image_capture_count = 0;
|
2010-11-29 18:49:26 +00:00
|
|
|
self->video_rec_status = GST_VIDEO_RECORDING_STATUS_DONE;
|
2011-02-09 22:14:13 +00:00
|
|
|
self->video_renegotiate = TRUE;
|
|
|
|
self->image_renegotiate = TRUE;
|
2010-12-17 01:49:24 +00:00
|
|
|
self->mode = GST_BASE_CAMERA_SRC_CAST (self)->mode;
|
2011-05-09 17:35:42 +00:00
|
|
|
self->app_vid_filter = NULL;
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2010-12-14 20:23:10 +00:00
|
|
|
gst_wrapper_camera_bin_src_plugin_init (GstPlugin * plugin)
|
2010-11-25 16:00:50 +00:00
|
|
|
{
|
2010-12-14 20:23:10 +00:00
|
|
|
return gst_element_register (plugin, "wrappercamerabinsrc", GST_RANK_NONE,
|
|
|
|
gst_wrapper_camera_bin_src_get_type ());
|
2010-11-25 16:00:50 +00:00
|
|
|
}
|