diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-24 22:58:42 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-28 10:28:31 +0100 |
commit | 08d23dd64d4566423579d8fbe609ec6145eae861 (patch) | |
tree | a89c7e51adba9ea1670a0d35b28e9aa138fda831 /libmm-glib/mm-call-audio-format.c | |
parent | 53a7dc2f63ac26edb1a3a8db8368b52cf0417de7 (diff) |
docs,libmm-glib: provide per-version indices
Diffstat (limited to 'libmm-glib/mm-call-audio-format.c')
-rw-r--r-- | libmm-glib/mm-call-audio-format.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libmm-glib/mm-call-audio-format.c b/libmm-glib/mm-call-audio-format.c index a5e5126a..3bc8be9e 100644 --- a/libmm-glib/mm-call-audio-format.c +++ b/libmm-glib/mm-call-audio-format.c @@ -51,7 +51,10 @@ struct _MMCallAudioFormatPrivate { * Gets the encoding of the audio format. For example, "pcm" for PCM-encoded * audio. * - * Returns: a string with the encoding, or #NULL if unknown. Do not free the returned value, it is owned by @self. + * Returns: a string with the encoding, or #NULL if unknown. Do not free the + * returned value, it is owned by @self. + * + * Since: 1.10 */ const gchar * mm_call_audio_format_get_encoding (MMCallAudioFormat *self) @@ -80,7 +83,10 @@ mm_call_audio_format_set_encoding (MMCallAudioFormat *self, * Gets the resolution of the audio format. For example, "s16le" for signed * 16-bit little-endian audio sampling resolution. * - * Returns: a string with the resolution, or #NULL if unknown. Do not free the returned value, it is owned by @self. + * Returns: a string with the resolution, or #NULL if unknown. Do not free the + * returned value, it is owned by @self. + * + * Since: 1.10 */ const gchar * mm_call_audio_format_get_resolution (MMCallAudioFormat *self) @@ -110,6 +116,8 @@ mm_call_audio_format_set_resolution (MMCallAudioFormat *self, * sampling rate. * * Returns: the sampling rate, or 0 if unknown. + * + * Since: 1.10 */ guint mm_call_audio_format_get_rate (MMCallAudioFormat *self) @@ -212,14 +220,6 @@ mm_call_audio_format_new_from_dictionary (GVariant *dictionary, /*****************************************************************************/ -/** - * mm_call_audio_format_dup: - * @orig: a #MMCallAudioFormat - * - * Creates a copy of @orig. - * - * Returns: (transfer full): a newly created #MMCallAudioFormat - */ MMCallAudioFormat * mm_call_audio_format_dup (MMCallAudioFormat *orig) { |