1 /* GStreamer Editing Services
2 * Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
3 * 2010 Nokia Corporation
4 * Copyright (C) 2020 Igalia S.L
5 * Author: 2020 Thibault Saunier <tsaunier@igalia.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
24 * SECTION:gesvideotestsource
25 * @title: GESVideoTestSource
26 * @short_description: produce solid colors and patterns, possibly with a time
33 #include "ges-internal.h"
34 #include "ges-track-element.h"
35 #include "ges-video-test-source.h"
37 #define DEFAULT_VPATTERN GES_VIDEO_TEST_PATTERN_SMPTE
39 struct _GESVideoTestSourcePrivate
41 GESVideoTestPattern pattern;
43 GstElement *capsfilter;
47 ges_extractable_interface_init (GESExtractableInterface * iface)
49 iface->check_id = ges_test_source_asset_check_id;
50 iface->asset_type = GES_TYPE_TRACK_ELEMENT_ASSET;
54 ges_video_test_source_asset_get_config (GESAsset * asset)
56 const gchar *id = ges_asset_get_id (asset);
57 if (g_strcmp0 (id, g_type_name (ges_asset_get_extractable_type (asset))))
58 return gst_structure_from_string (ges_asset_get_id (asset), NULL);
63 G_DEFINE_TYPE_WITH_CODE (GESVideoTestSource, ges_video_test_source,
64 GES_TYPE_VIDEO_SOURCE, G_ADD_PRIVATE (GESVideoTestSource)
65 G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE,
66 ges_extractable_interface_init));
68 static GstElement *ges_video_test_source_create_source (GESTrackElement * self);
71 get_natural_size (GESVideoSource * source, gint * width, gint * height)
74 GESTimelineElement *parent = GES_TIMELINE_ELEMENT_PARENT (source);
77 GESAsset *asset = ges_extractable_get_asset (GES_EXTRACTABLE (parent));
80 res = ges_test_clip_asset_get_natural_size (asset, width, height);
84 *width = DEFAULT_WIDTH;
85 *height = DEFAULT_HEIGHT;
92 _set_parent (GESTimelineElement * element, GESTimelineElement * parent)
94 gint width, height, fps_n, fps_d;
96 GESVideoTestSource *self = GES_VIDEO_TEST_SOURCE (element);
102 g_assert (self->priv->capsfilter);
103 /* Setting the parent ourself as we need it to get the natural size */
104 element->parent = parent;
105 if (!ges_video_source_get_natural_size (GES_VIDEO_SOURCE (self), &width,
107 width = DEFAULT_WIDTH;
108 height = DEFAULT_HEIGHT;
111 if (!ges_timeline_element_get_natural_framerate (parent, &fps_n, &fps_d)) {
112 fps_n = DEFAULT_FRAMERATE_N;
113 fps_d = DEFAULT_FRAMERATE_D;
116 caps = gst_caps_new_simple ("video/x-raw",
117 "width", G_TYPE_INT, width,
118 "height", G_TYPE_INT, height,
119 "framerate", GST_TYPE_FRACTION, fps_n, fps_d, NULL);
120 g_object_set (self->priv->capsfilter, "caps", caps, NULL);
121 gst_caps_unref (caps);
125 GES_TIMELINE_ELEMENT_CLASS
126 (ges_video_test_source_parent_class)->set_parent (element, parent);
130 _get_natural_framerate (GESTimelineElement * element, gint * fps_n,
133 gboolean res = FALSE;
134 GESTimelineElement *parent = GES_TIMELINE_ELEMENT_PARENT (element);
137 GESAsset *asset = ges_extractable_get_asset (GES_EXTRACTABLE (parent));
141 ges_clip_asset_get_natural_framerate (GES_CLIP_ASSET (asset), fps_n,
147 *fps_n = DEFAULT_FRAMERATE_N;
148 *fps_d = DEFAULT_FRAMERATE_D;
155 dispose (GObject * object)
157 G_OBJECT_CLASS (ges_video_test_source_parent_class)->dispose (object);
161 ges_video_test_source_class_init (GESVideoTestSourceClass * klass)
163 GObjectClass *object_class = G_OBJECT_CLASS (klass);
164 GESVideoSourceClass *source_class = GES_VIDEO_SOURCE_CLASS (klass);
166 source_class->create_source = ges_video_test_source_create_source;
167 source_class->ABI.abi.get_natural_size = get_natural_size;
169 object_class->dispose = dispose;
171 GES_TIMELINE_ELEMENT_CLASS (klass)->set_parent = _set_parent;
172 GES_TIMELINE_ELEMENT_CLASS (klass)->get_natural_framerate =
173 _get_natural_framerate;
177 ges_video_test_source_init (GESVideoTestSource * self)
179 self->priv = ges_video_test_source_get_instance_private (self);
181 self->priv->pattern = DEFAULT_VPATTERN;
184 static GstStructure *
185 ges_video_test_source_get_config (GESVideoTestSource * self)
187 GESAsset *asset = ges_extractable_get_asset (GES_EXTRACTABLE (self));
189 return ges_video_test_source_asset_get_config (asset);
195 ges_video_test_source_create_overlay (GESVideoTestSource * self)
197 const gchar *bindesc = NULL;
198 GstStructure *config = ges_video_test_source_get_config (self);
203 if (gst_structure_has_name (config, "time-overlay")) {
204 gboolean disable_timecodestamper;
206 if (gst_structure_get_boolean (config, "disable-timecodestamper",
207 &disable_timecodestamper))
208 bindesc = "timeoverlay";
210 bindesc = "timecodestamper ! timeoverlay";
212 gst_structure_free (config);
217 return gst_parse_bin_from_description (bindesc, TRUE, NULL);
221 ges_video_test_source_create_source (GESTrackElement * element)
225 GstElement *testsrc, *res;
227 const gchar *props[] =
228 { "pattern", "background-color", "foreground-color", NULL };
230 GESVideoTestSource *self = GES_VIDEO_TEST_SOURCE (element);
232 g_assert (!GES_TIMELINE_ELEMENT_PARENT (element));
233 testsrc = gst_element_factory_make ("videotestsrc", NULL);
234 self->priv->capsfilter = gst_element_factory_make ("capsfilter", NULL);
235 pattern = self->priv->pattern;
237 g_object_set (testsrc, "pattern", pattern, NULL);
239 elements = g_ptr_array_new ();
240 g_ptr_array_add (elements, self->priv->capsfilter);
241 caps = gst_caps_new_simple ("video/x-raw",
242 "width", G_TYPE_INT, DEFAULT_WIDTH,
243 "height", G_TYPE_INT, DEFAULT_HEIGHT,
244 "framerate", GST_TYPE_FRACTION, DEFAULT_FRAMERATE_N, DEFAULT_FRAMERATE_D,
246 g_object_set (self->priv->capsfilter, "caps", caps, NULL);
247 gst_caps_unref (caps);
249 overlay = ges_video_test_source_create_overlay (self);
251 const gchar *overlay_props[] =
252 { "time-mode", "text-y", "text-x", "text-width", "test-height",
253 "halignment", "valignment", "font-desc", NULL
256 ges_track_element_add_children_props (element, overlay, NULL,
257 NULL, overlay_props);
258 g_ptr_array_add (elements, overlay);
261 ges_track_element_add_children_props (element, testsrc, NULL, NULL, props);
263 res = ges_source_create_topbin (GES_SOURCE (element), "videotestsrc", testsrc,
270 * ges_video_test_source_set_pattern:
271 * @self: a #GESVideoTestSource
272 * @pattern: a #GESVideoTestPattern
274 * Sets the source to use the given @pattern.
277 ges_video_test_source_set_pattern (GESVideoTestSource
278 * self, GESVideoTestPattern pattern)
280 GstElement *element =
281 ges_track_element_get_element (GES_TRACK_ELEMENT (self));
283 self->priv->pattern = pattern;
288 g_value_init (&val, GES_VIDEO_TEST_PATTERN_TYPE);
289 g_value_set_enum (&val, pattern);
290 ges_track_element_set_child_property (GES_TRACK_ELEMENT (self), "pattern",
296 * ges_video_test_source_get_pattern:
297 * @source: a #GESVideoTestPattern
299 * Get the video pattern used by the @source.
301 * Returns: The video pattern used by the @source.
304 ges_video_test_source_get_pattern (GESVideoTestSource * source)
308 ges_track_element_get_child_property (GES_TRACK_ELEMENT (source), "pattern",
310 return g_value_get_enum (&val);
314 * ges_video_test_source_new:
316 * Creates a new #GESVideoTestSource.
318 * Returns: (transfer floating) (nullable): The newly created
319 * #GESVideoTestSource, or %NULL if there was an error.
322 ges_video_test_source_new (void)
324 GESVideoTestSource *res;
325 GESAsset *asset = ges_asset_request (GES_TYPE_VIDEO_TEST_SOURCE, NULL, NULL);
327 res = GES_VIDEO_TEST_SOURCE (ges_asset_extract (asset, NULL));
328 gst_object_unref (asset);