summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2018-02-15 12:07:32 +0100
committerOlivier CrĂȘte <olivier.crete@collabora.com>2018-02-23 15:29:57 -0500
commit4039bdbaac3522417160e6b8508d8c8868c8960b (patch)
treed24d9b7056da951aa574aefe9f5837cc70476224
parent1c81bf4bdc67b518d6b3bbc22398c17fe8ced1da (diff)
srt: Remove unused queued_buffers field
https://bugzilla.gnome.org/show_bug.cgi?id=793503
-rw-r--r--ext/srt/gstsrtbasesink.c5
-rw-r--r--ext/srt/gstsrtbasesink.h1
2 files changed, 2 insertions, 4 deletions
diff --git a/ext/srt/gstsrtbasesink.c b/ext/srt/gstsrtbasesink.c
index 3858f014e..9c4ba64b4 100644
--- a/ext/srt/gstsrtbasesink.c
+++ b/ext/srt/gstsrtbasesink.c
@@ -1,7 +1,7 @@
/* GStreamer SRT plugin based on libsrt
* Copyright (C) 2017, Collabora Ltd.
* Author:Justin Kim <justin.kim@collabora.com>
- *
+ *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
@@ -173,7 +173,7 @@ gst_srt_base_sink_class_init (GstSRTBaseSinkClass * klass)
/**
* GstSRTBaseSink:uri:
- *
+ *
* The URI used by SRT Connection.
*/
properties[PROP_URI] = g_param_spec_string ("uri", "URI",
@@ -204,7 +204,6 @@ static void
gst_srt_base_sink_init (GstSRTBaseSink * self)
{
self->uri = gst_uri_from_string (SRT_DEFAULT_URI);
- self->queued_buffers = NULL;
self->latency = SRT_DEFAULT_LATENCY;
self->passphrase = NULL;
self->key_length = SRT_DEFAULT_KEY_LENGTH;
diff --git a/ext/srt/gstsrtbasesink.h b/ext/srt/gstsrtbasesink.h
index 45c5bcf07..453a0d557 100644
--- a/ext/srt/gstsrtbasesink.h
+++ b/ext/srt/gstsrtbasesink.h
@@ -45,7 +45,6 @@ struct _GstSRTBaseSink {
GstBaseSink parent;
GstUri *uri;
- GList *queued_buffers;
gint latency;
gchar *passphrase;
gint key_length;