audio: annotate @buf in finish_frame methods

This commit is contained in:
Guillaume Desmottes 2020-03-18 15:38:25 +01:00
parent e4e3fc5666
commit 545d0b144f
2 changed files with 3 additions and 3 deletions

View file

@ -1234,7 +1234,7 @@ foreach_metadata (GstBuffer * inbuf, GstMeta ** meta, gpointer user_data)
/**
* gst_audio_decoder_finish_subframe:
* @dec: a #GstAudioDecoder
* @buf: decoded data
* @buf: (transfer full) (allow-none): decoded data
*
* Collects decoded data and pushes it downstream. This function may be called
* multiple times for a given input frame.
@ -1268,7 +1268,7 @@ gst_audio_decoder_finish_subframe (GstAudioDecoder * dec, GstBuffer * buf)
/**
* gst_audio_decoder_finish_frame:
* @dec: a #GstAudioDecoder
* @buf: decoded data
* @buf: (transfer full) (allow-none): decoded data
* @frames: number of decoded frames represented by decoded data
*
* Collects decoded data and pushes it downstream.

View file

@ -717,7 +717,7 @@ foreach_metadata (GstBuffer * inbuf, GstMeta ** meta, gpointer user_data)
/**
* gst_audio_encoder_finish_frame:
* @enc: a #GstAudioEncoder
* @buffer: encoded data
* @buffer: (transfer full) (allow-none): encoded data
* @samples: number of samples (per channel) represented by encoded data
*
* Collects encoded data and pushes encoded data downstream.