mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +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:
|
||||
* @clock: parent #GstSystemClock
|
||||
*
|
||||
* Opaque #GstAudioClock.
|
||||
*/
|
||||
struct _GstAudioClock {
|
||||
GstSystemClock clock;
|
||||
|
||||
/* --- protected --- */
|
||||
/*< protected >*/
|
||||
GstAudioClockGetTimeFunc func;
|
||||
gpointer user_data;
|
||||
|
||||
|
|
|
@ -47,7 +47,6 @@ typedef struct _GstAudioFilterClass GstAudioFilterClass;
|
|||
|
||||
/**
|
||||
* GstAudioFilter:
|
||||
* @basetransform: Element parent class
|
||||
*
|
||||
* Base class for audio filters with the same format for input and output.
|
||||
*
|
||||
|
|
|
@ -40,7 +40,6 @@ typedef struct _GstAudioSrcClass GstAudioSrcClass;
|
|||
|
||||
/**
|
||||
* GstAudioSrc:
|
||||
* @element: parent class
|
||||
*
|
||||
* 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.
|
||||
* from a sound card that records 1024 channels; mutually exclusive with
|
||||
* any other channel position
|
||||
* @GST_AUDIO_CHANNEL_POSITION_INVALID: invalid position
|
||||
*
|
||||
* Audio channel positions.
|
||||
*/
|
||||
typedef enum {
|
||||
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 */
|
||||
GST_AUDIO_CHANNEL_POSITION_NONE,
|
||||
|
||||
/*< private >*/
|
||||
/* don't use - counter */
|
||||
GST_AUDIO_CHANNEL_POSITION_NUM
|
||||
} GstAudioChannelPosition;
|
||||
|
|
Loading…
Reference in a new issue