summaryrefslogtreecommitdiff
path: root/sys/osxaudio
diff options
context:
space:
mode:
authorIlya Konstantinov <ilya.konstantinov@gmail.com>2015-03-09 22:30:28 +0200
committerArun Raghavan <git@arunraghavan.net>2015-03-10 09:14:57 +0530
commit4637b3eb8266efd77ea05f4ce059f0099dcc392c (patch)
treec34297bfef66061f1804078542b0ec622c7f8434 /sys/osxaudio
parent3763f4057aeb2d7a075898c30d19ffebf925092d (diff)
osxaudio: remove unused finalize
Diffstat (limited to 'sys/osxaudio')
-rw-r--r--sys/osxaudio/gstosxaudioringbuffer.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/osxaudio/gstosxaudioringbuffer.c b/sys/osxaudio/gstosxaudioringbuffer.c
index e191910ef..7c8c92a02 100644
--- a/sys/osxaudio/gstosxaudioringbuffer.c
+++ b/sys/osxaudio/gstosxaudioringbuffer.c
@@ -61,7 +61,6 @@ GST_DEBUG_CATEGORY_STATIC (osx_audio_debug);
#include "gstosxcoreaudio.h"
static void gst_osx_audio_ring_buffer_dispose (GObject * object);
-static void gst_osx_audio_ring_buffer_finalize (GObject * object);
static gboolean gst_osx_audio_ring_buffer_open_device (GstAudioRingBuffer *
buf);
static gboolean gst_osx_audio_ring_buffer_close_device (GstAudioRingBuffer *
@@ -95,7 +94,6 @@ gst_osx_audio_ring_buffer_class_init (GstOsxAudioRingBufferClass * klass)
ring_parent_class = g_type_class_peek_parent (klass);
gobject_class->dispose = gst_osx_audio_ring_buffer_dispose;
- gobject_class->finalize = gst_osx_audio_ring_buffer_finalize;
gstringbuffer_class->open_device =
GST_DEBUG_FUNCPTR (gst_osx_audio_ring_buffer_open_device);
@@ -139,12 +137,6 @@ gst_osx_audio_ring_buffer_dispose (GObject * object)
G_OBJECT_CLASS (ring_parent_class)->dispose (object);
}
-static void
-gst_osx_audio_ring_buffer_finalize (GObject * object)
-{
- G_OBJECT_CLASS (ring_parent_class)->finalize (object);
-}
-
static gboolean
gst_osx_audio_ring_buffer_open_device (GstAudioRingBuffer * buf)
{