2015-02-27 16:03:42 +00:00
|
|
|
/* GStreamer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Samsung Electronics. All rights reserved.
|
|
|
|
* Author: Thiago Santos <thiagoss@osg.samsung.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
/* demo for showing v4l2src renegotiating */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
/* Options */
|
2017-07-08 06:49:44 +00:00
|
|
|
static const gchar *device = "/dev/video0";
|
|
|
|
static const gchar *videosink = "autovideosink";
|
2017-09-13 15:32:09 +00:00
|
|
|
static const gchar *io_mode = "mmap";
|
2017-07-08 06:49:44 +00:00
|
|
|
static const gchar *def_resolutions[] = {
|
2015-02-27 16:03:42 +00:00
|
|
|
"320x240",
|
|
|
|
"1280x720",
|
|
|
|
"640x480",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-07-08 06:49:44 +00:00
|
|
|
static const gchar **resolutions = def_resolutions;
|
2015-02-27 16:03:42 +00:00
|
|
|
|
|
|
|
static GOptionEntry entries[] = {
|
|
|
|
{"device", 'd', 0, G_OPTION_ARG_STRING, &device, "V4L2 Camera Device",
|
|
|
|
NULL},
|
|
|
|
{"videosink", 's', 0, G_OPTION_ARG_STRING, &videosink, "Video Sink to use",
|
|
|
|
NULL},
|
2017-09-13 15:32:09 +00:00
|
|
|
{"io-mode", 'z', 0, G_OPTION_ARG_STRING, &io_mode,
|
|
|
|
"Configure the \"io-mode\" property on v4l2scr", NULL},
|
2015-02-27 16:03:42 +00:00
|
|
|
{"resolution", 'r', 0, G_OPTION_ARG_STRING_ARRAY, &resolutions,
|
|
|
|
"Add a resolution to the list", NULL},
|
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static GMainLoop *loop;
|
|
|
|
static GstElement *pipeline;
|
|
|
|
static GstElement *src, *capsfilter;
|
2017-12-14 16:28:00 +00:00
|
|
|
static gint resolution_index = 0;
|
2015-02-27 16:03:42 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
bus_callback (GstBus * bus, GstMessage * message, gpointer data)
|
|
|
|
{
|
|
|
|
switch (message->type) {
|
|
|
|
case GST_MESSAGE_EOS:
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
break;
|
|
|
|
case GST_MESSAGE_ERROR:{
|
|
|
|
GError *gerror;
|
|
|
|
gchar *debug;
|
|
|
|
|
|
|
|
gst_message_parse_error (message, &gerror, &debug);
|
|
|
|
gst_object_default_error (GST_MESSAGE_SRC (message), gerror, debug);
|
|
|
|
g_error_free (gerror);
|
|
|
|
g_free (debug);
|
|
|
|
g_main_loop_quit (loop);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
change_caps (gpointer data)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GStrv res;
|
|
|
|
gchar *caps_str;
|
|
|
|
|
2017-12-14 16:28:00 +00:00
|
|
|
if (!resolutions[resolution_index]) {
|
2015-02-27 16:03:42 +00:00
|
|
|
gst_element_send_event (pipeline, gst_event_new_eos ());
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-12-14 16:28:00 +00:00
|
|
|
g_print ("Setting resolution to '%s'\n", resolutions[resolution_index]);
|
2015-02-27 16:03:42 +00:00
|
|
|
|
2017-12-14 16:28:00 +00:00
|
|
|
res = g_strsplit (resolutions[resolution_index++], "x", 2);
|
2015-02-27 16:03:42 +00:00
|
|
|
if (!res[0] || !res[1]) {
|
2017-12-14 16:28:00 +00:00
|
|
|
g_warning ("Can't parse resolution: %s", resolutions[resolution_index - 1]);
|
2015-02-27 16:03:42 +00:00
|
|
|
g_strfreev (res);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
caps_str = g_strdup_printf ("video/x-raw,width=%s,height=%s", res[0], res[1]);
|
|
|
|
caps = gst_caps_from_string (caps_str);
|
|
|
|
g_object_set (capsfilter, "caps", caps, NULL);
|
|
|
|
|
|
|
|
g_strfreev (res);
|
|
|
|
g_free (caps_str);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
main (gint argc, gchar ** argv)
|
|
|
|
{
|
|
|
|
GstBus *bus;
|
|
|
|
GError *error = NULL;
|
|
|
|
GOptionContext *context;
|
|
|
|
gchar *desc;
|
2017-09-13 15:38:44 +00:00
|
|
|
gboolean ret;
|
2015-02-27 16:03:42 +00:00
|
|
|
|
|
|
|
context = g_option_context_new ("- test v4l2src live renegotition");
|
|
|
|
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
|
|
|
|
g_option_context_add_group (context, gst_init_get_option_group ());
|
2017-09-13 15:38:44 +00:00
|
|
|
ret = g_option_context_parse (context, &argc, &argv, &error);
|
|
|
|
g_option_context_free (context);
|
|
|
|
|
|
|
|
if (!ret) {
|
2015-02-27 16:03:42 +00:00
|
|
|
g_print ("option parsing failed: %s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
|
|
|
desc = g_strdup_printf ("v4l2src name=src device=\"%s\" io-mode=\"%s\" "
|
2017-09-13 15:32:09 +00:00
|
|
|
"! capsfilter name=cf ! %s", device, io_mode, videosink);
|
2015-02-27 16:03:42 +00:00
|
|
|
pipeline = gst_parse_launch (desc, &error);
|
2017-09-13 15:33:33 +00:00
|
|
|
g_free (desc);
|
2015-02-27 16:03:42 +00:00
|
|
|
if (!pipeline) {
|
|
|
|
g_print ("failed to create pipeline: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
src = gst_bin_get_by_name (GST_BIN (pipeline), "src");
|
|
|
|
capsfilter = gst_bin_get_by_name (GST_BIN (pipeline), "cf");
|
|
|
|
|
|
|
|
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
|
|
|
gst_bus_add_watch (bus, bus_callback, NULL);
|
|
|
|
gst_object_unref (bus);
|
|
|
|
|
|
|
|
change_caps (NULL);
|
|
|
|
|
|
|
|
/* play and wait */
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
|
|
|
|
|
|
|
g_timeout_add_seconds (3, change_caps, NULL);
|
|
|
|
|
|
|
|
/* mainloop and wait for eos */
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
/* stop and cleanup */
|
|
|
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
|
|
|
gst_object_unref (src);
|
|
|
|
gst_object_unref (capsfilter);
|
|
|
|
gst_object_unref (GST_OBJECT (pipeline));
|
|
|
|
g_main_loop_unref (loop);
|
|
|
|
return 0;
|
|
|
|
}
|