summaryrefslogtreecommitdiff
path: root/plugins/nle/nleoperation.c
diff options
context:
space:
mode:
authorHenry Wilkes <hwilkes@igalia.com>2020-04-08 17:08:41 +0100
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-04-29 12:32:52 +0000
commit2794ec836f6e534923b607f81dec6bf41b56a6b9 (patch)
treef49e092a0bd7243b6a68429cd8f30d64edbfd5a1 /plugins/nle/nleoperation.c
parent7bef18169a0fd6acea7f846562d49b07a15d3dd8 (diff)
nleoperation: stop setting next_base_time
This property was unused. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/160>
Diffstat (limited to 'plugins/nle/nleoperation.c')
-rw-r--r--plugins/nle/nleoperation.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/nle/nleoperation.c b/plugins/nle/nleoperation.c
index 9db2a70f..6f37eaa4 100644
--- a/plugins/nle/nleoperation.c
+++ b/plugins/nle/nleoperation.c
@@ -195,7 +195,6 @@ nle_operation_reset (NleOperation * operation)
{
operation->num_sinks = 1;
operation->realsinks = 0;
- operation->next_base_time = 0;
}
static void
@@ -827,19 +826,3 @@ nle_operation_signal_input_priority_changed (NleOperation * operation,
g_signal_emit (operation, nle_operation_signals[INPUT_PRIORITY_CHANGED],
0, pad, priority);
}
-
-void
-nle_operation_update_base_time (NleOperation * operation,
- GstClockTime timestamp)
-{
- if (!nle_object_to_media_time (NLE_OBJECT (operation),
- timestamp, &operation->next_base_time)) {
- GST_WARNING_OBJECT (operation, "Trying to set a basetime outside of "
- "ourself");
-
- return;
- }
-
- GST_INFO_OBJECT (operation, "Setting next_basetime to %"
- GST_TIME_FORMAT, GST_TIME_ARGS (operation->next_base_time));
-}