summaryrefslogtreecommitdiff
path: root/gst/timecode/plugin.c
diff options
context:
space:
mode:
authorVivia Nikolaidou <vivia@toolsonair.com>2017-01-25 13:06:28 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-01-26 16:21:55 +0200
commit9e4e447ad4dedb6dd7903abe88c0d0aef1b28e68 (patch)
tree46b810b65a9129e31e83874194628824e783be01 /gst/timecode/plugin.c
parentf23277e55df363ec8e3686f19edf21d1810ab62d (diff)
downloadgstreamer-plugins-bad-9e4e447ad4dedb6dd7903abe88c0d0aef1b28e68.tar.gz
avwait: Rename timecodewait to avwait, add modes
Renamed timecodewait to avwait. Added running-time and video-first modes. Default mode is timecode (the previous behaviour). https://bugzilla.gnome.org/show_bug.cgi?id=777741
Diffstat (limited to 'gst/timecode/plugin.c')
-rw-r--r--gst/timecode/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/timecode/plugin.c b/gst/timecode/plugin.c
index 8bfcbe957..245f3aab2 100644
--- a/gst/timecode/plugin.c
+++ b/gst/timecode/plugin.c
@@ -25,7 +25,7 @@
#endif
#include "gsttimecodestamper.h"
-#include "gsttimecodewait.h"
+#include "gstavwait.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -35,8 +35,8 @@ plugin_init (GstPlugin * plugin)
ret = gst_element_register (plugin, "timecodestamper", GST_RANK_NONE,
GST_TYPE_TIME_CODE_STAMPER);
- ret &= gst_element_register (plugin, "timecodewait", GST_RANK_NONE,
- GST_TYPE_TIMECODEWAIT);
+ ret &= gst_element_register (plugin, "avwait", GST_RANK_NONE,
+ GST_TYPE_AVWAIT);
return ret;
}