mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
add a few missing doxygen comments
This commit is contained in:
parent
6058530571
commit
df8ad5d18f
4 changed files with 19 additions and 1 deletions
|
|
@ -26,17 +26,29 @@
|
|||
#include <pulse/cdecl.h>
|
||||
#include <pulse/gccmacro.h>
|
||||
#include <pulse/sample.h>
|
||||
#include <pulse/version.h>
|
||||
|
||||
/** \file
|
||||
* Utility functions for handling timeval calculations */
|
||||
|
||||
PA_C_DECL_BEGIN
|
||||
|
||||
/** The number of milliseconds in a second */
|
||||
#define PA_MSEC_PER_SEC ((pa_usec_t) 1000ULL)
|
||||
|
||||
/** The number of microseconds in a second */
|
||||
#define PA_USEC_PER_SEC ((pa_usec_t) 1000000ULL)
|
||||
|
||||
/** The number of nanoseconds in a second */
|
||||
#define PA_NSEC_PER_SEC ((pa_usec_t) 1000000000ULL)
|
||||
|
||||
/** The number of microseconds in a millisecond */
|
||||
#define PA_USEC_PER_MSEC ((pa_usec_t) 1000ULL)
|
||||
|
||||
/** The number of nanoseconds in a millisecond */
|
||||
#define PA_NSEC_PER_MSEC ((pa_usec_t) 1000000ULL)
|
||||
|
||||
/** The number of nanoseconds in a microsecond */
|
||||
#define PA_NSEC_PER_USEC ((pa_usec_t) 1000ULL)
|
||||
|
||||
struct timeval;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue