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