mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rename files to match contained objects
This commit is contained in:
parent
6511f36fdb
commit
3d0ac3ded2
8 changed files with 16 additions and 16 deletions
|
@ -357,8 +357,8 @@ gst_audio_channel_position_get_type
|
|||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>gstringbuffer</FILE>
|
||||
<INCLUDE>gst/audio/gstringbuffer.h</INCLUDE>
|
||||
<FILE>gstaudioringbuffer</FILE>
|
||||
<INCLUDE>gst/audio/gstaudioringbuffer.h</INCLUDE>
|
||||
GstAudioRingBuffer
|
||||
GstAudioRingBufferClass
|
||||
GstAudioRingBufferSpec
|
||||
|
|
|
@ -17,7 +17,7 @@ gst_audio_src_get_type
|
|||
gst_base_audio_sink_get_type
|
||||
#include <gst/audio/gstbaseaudiosrc.h>
|
||||
gst_base_audio_src_get_type
|
||||
#include <gst/audio/gstringbuffer.h>
|
||||
#include <gst/audio/gstaudioringbuffer.h>
|
||||
gst_audio_ring_buffer_get_type
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# variables used for enum/marshal generation
|
||||
glib_enum_headers= \
|
||||
multichannel.h \
|
||||
gstringbuffer.h
|
||||
gstaudioringbuffer.h
|
||||
|
||||
glib_enum_define = GST_AUDIO
|
||||
glib_gen_prefix = gst_audio
|
||||
|
@ -19,7 +19,7 @@ CLEANFILES = $(BUILT_SOURCES)
|
|||
# FIXME 0.11: rename GstBaseAudioSink to GstAudioBaseSink or merge with GstAudioSink
|
||||
libgstaudio_@GST_MAJORMINOR@_la_SOURCES = \
|
||||
audio.c \
|
||||
gstringbuffer.c \
|
||||
gstaudioringbuffer.c \
|
||||
gstaudioclock.c \
|
||||
mixerutils.c \
|
||||
multichannel.c \
|
||||
|
@ -36,7 +36,7 @@ nodist_libgstaudio_@GST_MAJORMINOR@_la_SOURCES = $(built_sources) $(built_header
|
|||
libgstaudio_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/audio
|
||||
libgstaudio_@GST_MAJORMINOR@include_HEADERS = \
|
||||
audio.h \
|
||||
gstringbuffer.h \
|
||||
gstaudioringbuffer.h \
|
||||
gstaudioclock.h \
|
||||
gstaudiofilter.h \
|
||||
gstaudiodecoder.h \
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef __GST_AUDIO_IEC61937_H__
|
||||
#define __GST_AUDIO_IEC61937_H__
|
||||
|
||||
#include <gst/audio/gstringbuffer.h>
|
||||
#include <gst/audio/gstaudioringbuffer.h>
|
||||
|
||||
guint gst_audio_iec61937_frame_size (const GstAudioRingBufferSpec * spec);
|
||||
gboolean gst_audio_iec61937_payload (const guint8 * src, guint src_n,
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* SECTION:gstringbuffer
|
||||
* SECTION:gstaudioringbuffer
|
||||
* @short_description: Base class for audio ringbuffer implementations
|
||||
* @see_also: #GstBaseAudioSink, #GstAudioSink
|
||||
*
|
||||
|
@ -41,7 +41,7 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include "gstringbuffer.h"
|
||||
#include "gstaudioringbuffer.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (gst_audio_ring_buffer_debug);
|
||||
#define GST_CAT_DEFAULT gst_audio_ring_buffer_debug
|
||||
|
@ -62,10 +62,10 @@ static void
|
|||
gst_audio_ring_buffer_class_init (GstAudioRingBufferClass * klass)
|
||||
{
|
||||
GObjectClass *gobject_class;
|
||||
GstAudioRingBufferClass *gstringbuffer_class;
|
||||
GstAudioRingBufferClass *gstaudioringbuffer_class;
|
||||
|
||||
gobject_class = (GObjectClass *) klass;
|
||||
gstringbuffer_class = (GstAudioRingBufferClass *) klass;
|
||||
gstaudioringbuffer_class = (GstAudioRingBufferClass *) klass;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (gst_audio_ring_buffer_debug, "ringbuffer", 0,
|
||||
"ringbuffer class");
|
||||
|
@ -73,8 +73,8 @@ gst_audio_ring_buffer_class_init (GstAudioRingBufferClass * klass)
|
|||
gobject_class->dispose = gst_audio_ring_buffer_dispose;
|
||||
gobject_class->finalize = gst_audio_ring_buffer_finalize;
|
||||
|
||||
gstringbuffer_class->clear_all = GST_DEBUG_FUNCPTR (default_clear_all);
|
||||
gstringbuffer_class->commit = GST_DEBUG_FUNCPTR (default_commit);
|
||||
gstaudioringbuffer_class->clear_all = GST_DEBUG_FUNCPTR (default_clear_all);
|
||||
gstaudioringbuffer_class->commit = GST_DEBUG_FUNCPTR (default_commit);
|
||||
}
|
||||
|
||||
static void
|
|
@ -2,7 +2,7 @@
|
|||
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
||||
* 2005 Wim Taymans <wim@fluendo.com>
|
||||
*
|
||||
* gstringbuffer.h:
|
||||
* gstaudioringbuffer.h:
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstbasesink.h>
|
||||
#include "gstringbuffer.h"
|
||||
#include "gstaudioringbuffer.h"
|
||||
#include "gstaudioclock.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstpushsrc.h>
|
||||
#include "gstringbuffer.h"
|
||||
#include "gstaudioringbuffer.h"
|
||||
#include "gstaudioclock.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
|
Loading…
Reference in a new issue