srt: Remove unused queued_buffers field

https://bugzilla.gnome.org/show_bug.cgi?id=793503
This commit is contained in:
Jan Alexander Steffens (heftig) 2018-02-15 12:07:32 +01:00 committed by Olivier Crête
parent 1c81bf4bdc
commit 4039bdbaac
2 changed files with 2 additions and 4 deletions

View file

@ -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;

View file

@ -45,7 +45,6 @@ struct _GstSRTBaseSink {
GstBaseSink parent;
GstUri *uri;
GList *queued_buffers;
gint latency;
gchar *passphrase;
gint key_length;