summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-07-22 07:32:51 -0400
committerThibault Saunier <tsaunier@gnome.org>2016-07-22 07:38:07 -0400
commit256be462d1614230f8091966da193f9f448e1440 (patch)
treea11d23a47916d0f6f94a622eaf7ab8442c083e6f
parent06515f01c9f03c15a637284462dfbf17b68f7cbc (diff)
image-source: Do not concider inpoints
We have no restriction on inpoint for Images Differential Revision: https://phabricator.freedesktop.org/D1202
-rw-r--r--ges/ges-image-source.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ges/ges-image-source.c b/ges/ges-image-source.c
index 66f3ef3f..157f2f0d 100644
--- a/ges/ges-image-source.c
+++ b/ges/ges-image-source.c
@@ -22,7 +22,7 @@
* SECTION:gesimagesource
* @short_description: outputs the video stream from a media file as a still
* image.
- *
+ *
* Outputs the video stream from a given file as a still frame. The frame
* chosen will be determined by the in-point property on the track element. For
* image files, do not set the in-point property.
@@ -165,6 +165,8 @@ ges_image_source_class_init (GESImageSourceClass * klass)
g_object_class_install_property (object_class, PROP_URI,
g_param_spec_string ("uri", "URI", "uri of the resource",
NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+
+ GES_TIMELINE_ELEMENT_CLASS (klass)->set_inpoint = NULL;
source_class->create_source = ges_image_source_create_source;
}