summaryrefslogtreecommitdiff
path: root/farstream/fs-codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'farstream/fs-codec.c')
-rw-r--r--farstream/fs-codec.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/farstream/fs-codec.c b/farstream/fs-codec.c
index 8b78d546..abc81b70 100644
--- a/farstream/fs-codec.c
+++ b/farstream/fs-codec.c
@@ -660,8 +660,8 @@ fs_codec_are_equal (const FsCodec *codec1, const FsCodec *codec2)
/**
* fs_codec_list_are_equal:
- * @list1: (element-type FsCodec): a #GList of #FsCodec
- * @list2: (element-type FsCodec): a #GList of #FsCodec
+ * @list1: (element-type FsCodec) (allow-none): a #GList of #FsCodec
+ * @list2: (element-type FsCodec) (allow-none): a #GList of #FsCodec
*
* Verifies if two glist of fscodecs are identical
*
@@ -739,7 +739,8 @@ fs_codec_remove_optional_parameter (FsCodec *codec,
* fs_codec_get_optional_parameter:
* @codec: a #FsCodec
* @name: The name of the parameter to search for
- * @value: The value of the parameter to search for or %NULL for any value
+ * @value: (allow-none): The value of the parameter to search for or %NULL for
+ * any value
*
* Finds the #FsCodecParameter in the #FsCodec that has the requested name
* and, if not %NULL, the requested value
@@ -802,10 +803,12 @@ fs_codec_add_feedback_parameter (FsCodec *codec, const gchar *type,
/**
* fs_codec_get_feedback_parameter:
* @codec: a #FsCodec
- * @type: The subtype of the parameter to search for or %NULL for any type
- * @subtype: The subtype of the parameter to search for or %NULL for any subtype
- * @extra_params: The extra_params of the parameter to search for or %NULL for
- * any extra_params
+ * @type: (allow-none): The subtype of the parameter to search for or %NULL for
+ * any type
+ * @subtype: (allow-none): The subtype of the parameter to search for or %NULL
+ * for any subtype
+ * @extra_params: (allow-none): The extra_params of the parameter to search for
+ * or %NULL for any extra_params
*
* Finds the #FsFeedbackParameter in the #FsCodec that has the requested
* subtype, type and extra_params. One of which must be non-NULL;