mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
docs: fixup audio-library docs
This commit is contained in:
parent
762bb236fa
commit
089fdb7792
4 changed files with 5 additions and 4 deletions
|
@ -60,14 +60,13 @@ typedef GstClockTime (*GstAudioClockGetTimeFunc) (GstClock *clock, gpointer user
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstAudioClock:
|
* GstAudioClock:
|
||||||
* @clock: parent #GstSystemClock
|
|
||||||
*
|
*
|
||||||
* Opaque #GstAudioClock.
|
* Opaque #GstAudioClock.
|
||||||
*/
|
*/
|
||||||
struct _GstAudioClock {
|
struct _GstAudioClock {
|
||||||
GstSystemClock clock;
|
GstSystemClock clock;
|
||||||
|
|
||||||
/* --- protected --- */
|
/*< protected >*/
|
||||||
GstAudioClockGetTimeFunc func;
|
GstAudioClockGetTimeFunc func;
|
||||||
gpointer user_data;
|
gpointer user_data;
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,6 @@ typedef struct _GstAudioFilterClass GstAudioFilterClass;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstAudioFilter:
|
* GstAudioFilter:
|
||||||
* @basetransform: Element parent class
|
|
||||||
*
|
*
|
||||||
* Base class for audio filters with the same format for input and output.
|
* Base class for audio filters with the same format for input and output.
|
||||||
*
|
*
|
||||||
|
|
|
@ -40,7 +40,6 @@ typedef struct _GstAudioSrcClass GstAudioSrcClass;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstAudioSrc:
|
* GstAudioSrc:
|
||||||
* @element: parent class
|
|
||||||
*
|
*
|
||||||
* Base class for simple audio sources.
|
* Base class for simple audio sources.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -42,6 +42,9 @@ G_BEGIN_DECLS
|
||||||
* @GST_AUDIO_CHANNEL_POSITION_NONE: used for position-less channels, e.g.
|
* @GST_AUDIO_CHANNEL_POSITION_NONE: used for position-less channels, e.g.
|
||||||
* from a sound card that records 1024 channels; mutually exclusive with
|
* from a sound card that records 1024 channels; mutually exclusive with
|
||||||
* any other channel position
|
* any other channel position
|
||||||
|
* @GST_AUDIO_CHANNEL_POSITION_INVALID: invalid position
|
||||||
|
*
|
||||||
|
* Audio channel positions.
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
GST_AUDIO_CHANNEL_POSITION_INVALID = -1,
|
GST_AUDIO_CHANNEL_POSITION_INVALID = -1,
|
||||||
|
@ -74,6 +77,7 @@ typedef enum {
|
||||||
* are defined or all positions are undefined, but can't mix'n'match */
|
* are defined or all positions are undefined, but can't mix'n'match */
|
||||||
GST_AUDIO_CHANNEL_POSITION_NONE,
|
GST_AUDIO_CHANNEL_POSITION_NONE,
|
||||||
|
|
||||||
|
/*< private >*/
|
||||||
/* don't use - counter */
|
/* don't use - counter */
|
||||||
GST_AUDIO_CHANNEL_POSITION_NUM
|
GST_AUDIO_CHANNEL_POSITION_NUM
|
||||||
} GstAudioChannelPosition;
|
} GstAudioChannelPosition;
|
||||||
|
|
Loading…
Reference in a new issue