summaryrefslogtreecommitdiff
path: root/plugins/elements/gstconcat.c
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-04-27 12:40:31 -0400
committerTim-Philipp Müller <tim@centricular.com>2018-05-01 11:18:03 +0100
commit4a402c1c7d14d8fd1970e2008422c9b23be92412 (patch)
tree71ae4f9d2f4a1aed19d212cb6eaf61935f08dc34 /plugins/elements/gstconcat.c
parentbad751b22fb4aecd0a2aa6765cbdd61da622dfe8 (diff)
Fix typos in comments and docs
Found via `codespell` https://bugzilla.gnome.org/show_bug.cgi?id=795610
Diffstat (limited to 'plugins/elements/gstconcat.c')
-rw-r--r--plugins/elements/gstconcat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/elements/gstconcat.c b/plugins/elements/gstconcat.c
index 8513ef385f..c05a59bf57 100644
--- a/plugins/elements/gstconcat.c
+++ b/plugins/elements/gstconcat.c
@@ -23,12 +23,12 @@
* @title: concat
* @see_also: #GstFunnel
*
- * Concatenates streams together to one continous stream.
+ * Concatenates streams together to one continuous stream.
*
* All streams but the current one are blocked until the current one
* finished with %GST_EVENT_EOS. Then the next stream is enabled, while
- * keeping the running time continous for %GST_FORMAT_TIME segments or
- * keeping the segment continous for %GST_FORMAT_BYTES segments.
+ * keeping the running time continuous for %GST_FORMAT_TIME segments or
+ * keeping the segment continuous for %GST_FORMAT_BYTES segments.
*
* Streams are switched in the order in which the sinkpads were requested.
*
@@ -574,7 +574,7 @@ gst_concat_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
/* We know no duration */
segment.duration = -1;
- /* Update segment values to be continous with last stream */
+ /* Update segment values to be continuous with last stream */
if (self->format == GST_FORMAT_TIME) {
segment.base += self->current_start_offset;
} else {