mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
osxaudio: remove unused finalize
This commit is contained in:
parent
3763f4057a
commit
4637b3eb82
1 changed files with 0 additions and 8 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue