summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanu Kaskinen <tanu.kaskinen@linux.intel.com>2014-01-23 11:21:58 +0200
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2014-01-23 11:21:58 +0200
commit9839ad492f04e33f7959dca03a74d3ab569d4339 (patch)
treed043ea724529372a9d0cda412406344f733de1dc
parent6b82c6122bc8e6907a15036a8f16b30f380ac459 (diff)
introspect, thread-mainloop: Fix Doxygen "since" tags
-rw-r--r--src/pulse/introspect.h6
-rw-r--r--src/pulse/thread-mainloop.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pulse/introspect.h b/src/pulse/introspect.h
index e7224c64..22fefedf 100644
--- a/src/pulse/introspect.h
+++ b/src/pulse/introspect.h
@@ -510,7 +510,7 @@ typedef struct pa_card_port_info {
pa_card_profile_info** profiles; /**< \deprecated Superseded by profiles2 */
pa_proplist *proplist; /**< Property list */
int64_t latency_offset; /**< Latency offset of the port that gets added to the sink/source latency when the port is active. \since 3.0 */
- pa_card_profile_info2** profiles2; /**< Array of pointers to available profiles, or NULL. Array is terminated by an entry set to NULL. */
+ pa_card_profile_info2** profiles2; /**< Array of pointers to available profiles, or NULL. Array is terminated by an entry set to NULL. \since 5.0 */
} pa_card_port_info;
/** Stores information about cards. Please note that this structure
@@ -527,8 +527,8 @@ typedef struct pa_card_info {
pa_proplist *proplist; /**< Property list */
uint32_t n_ports; /**< Number of entries in port array */
pa_card_port_info **ports; /**< Array of pointers to ports, or NULL. Array is terminated by an entry set to NULL. */
- pa_card_profile_info2** profiles2; /**< Array of pointers to available profiles, or NULL. Array is terminated by an entry set to NULL. */
- pa_card_profile_info2* active_profile2; /**< Pointer to active profile in the array, or NULL. */
+ pa_card_profile_info2** profiles2; /**< Array of pointers to available profiles, or NULL. Array is terminated by an entry set to NULL. \since 5.0 */
+ pa_card_profile_info2* active_profile2; /**< Pointer to active profile in the array, or NULL. \since 5.0 */
} pa_card_info;
/** Callback prototype for pa_context_get_card_info_...() \since 0.9.15 */
diff --git a/src/pulse/thread-mainloop.h b/src/pulse/thread-mainloop.h
index 689336d7..f1636e83 100644
--- a/src/pulse/thread-mainloop.h
+++ b/src/pulse/thread-mainloop.h
@@ -311,7 +311,7 @@ pa_mainloop_api* pa_threaded_mainloop_get_api(pa_threaded_mainloop*m);
/** Returns non-zero when called from within the event loop thread. \since 0.9.7 */
int pa_threaded_mainloop_in_thread(pa_threaded_mainloop *m);
-/** Sets the name of the thread. \since 4.0 */
+/** Sets the name of the thread. \since 5.0 */
void pa_threaded_mainloop_set_name(pa_threaded_mainloop *m, const char *name);
PA_C_DECL_END