Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Seungha Yang
gst-plugins-base
Commits
b35bc51e
Commit
b35bc51e
authored
Sep 13, 2012
by
Olivier Crête
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audio: Fix annotations
parent
f9ac1f64
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
gst-libs/gst/audio/audio.c
gst-libs/gst/audio/audio.c
+2
-2
gst-libs/gst/audio/gstaudiodecoder.h
gst-libs/gst/audio/gstaudiodecoder.h
+1
-1
gst-libs/gst/audio/gstaudioencoder.c
gst-libs/gst/audio/gstaudioencoder.c
+1
-1
gst-libs/gst/audio/gstaudioencoder.h
gst-libs/gst/audio/gstaudioencoder.h
+1
-1
gst-libs/gst/audio/gstaudioringbuffer.c
gst-libs/gst/audio/gstaudioringbuffer.c
+1
-1
No files found.
gst-libs/gst/audio/audio.c
View file @
b35bc51e
...
...
@@ -34,7 +34,7 @@
/**
* gst_audio_buffer_clip:
* @buffer: The buffer to clip.
* @buffer:
(transfer full):
The buffer to clip.
* @segment: Segment in %GST_FORMAT_TIME or %GST_FORMAT_DEFAULT to which
* the buffer should be clipped.
* @rate: sample rate.
...
...
@@ -46,7 +46,7 @@
* After calling this function the caller does not own a reference to
* @buffer anymore.
*
* Returns: %NULL if the buffer is completely outside the configured segment,
* Returns:
(transfer full):
%NULL if the buffer is completely outside the configured segment,
* otherwise the clipped buffer is returned.
*
* If the buffer has no timestamp, it is assumed to be inside the segment and
...
...
gst-libs/gst/audio/gstaudiodecoder.h
View file @
b35bc51e
...
...
@@ -282,7 +282,7 @@ gboolean gst_audio_decoder_negotiate (GstAudioDecoder * dec);
GstFlowReturn
gst_audio_decoder_finish_frame
(
GstAudioDecoder
*
dec
,
GstBuffer
*
buf
,
gint
frames
);
GstBuffer
*
gst_audio_decoder_allocate_output_buffer
(
GstAudioDecoder
*
dec
oder
,
GstBuffer
*
gst_audio_decoder_allocate_output_buffer
(
GstAudioDecoder
*
dec
,
gsize
size
);
/* context parameters */
...
...
gst-libs/gst/audio/gstaudioencoder.c
View file @
b35bc51e
...
...
@@ -2589,7 +2589,7 @@ no_decide_allocation:
/**
* gst_audio_encoder_negotiate:
* @
d
ec: a #GstAudioEncoder
* @e
n
c: a #GstAudioEncoder
*
* Negotiate with downstreame elements to currently configured #GstCaps.
*
...
...
gst-libs/gst/audio/gstaudioencoder.h
View file @
b35bc51e
...
...
@@ -228,7 +228,7 @@ gboolean gst_audio_encoder_set_output_format (GstAudioEncoder * enc,
gboolean
gst_audio_encoder_negotiate
(
GstAudioEncoder
*
enc
);
GstBuffer
*
gst_audio_encoder_allocate_output_buffer
(
GstAudioEncoder
*
enc
oder
,
GstBuffer
*
gst_audio_encoder_allocate_output_buffer
(
GstAudioEncoder
*
enc
,
gsize
size
);
/* context parameters */
...
...
gst-libs/gst/audio/gstaudioringbuffer.c
View file @
b35bc51e
...
...
@@ -329,7 +329,7 @@ gst_audio_ring_buffer_convert (GstAudioRingBuffer * buf,
/**
* gst_audio_ring_buffer_set_callback:
* @buf: the #GstAudioRingBuffer to set the callback on
* @cb: the callback to set
* @cb:
(scope async):
the callback to set
* @user_data: user data passed to the callback
*
* Sets the given callback function on the buffer. This function
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment