mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-16 08:56:42 -05:00
Fix the variable types in struct
The variable types are declared explicitly like u_int32_t and u_int64_t to avoid ambiguity.
This commit is contained in:
parent
8c4b4ec183
commit
9c0c171985
1 changed files with 6 additions and 6 deletions
|
|
@ -32,13 +32,13 @@ typedef enum {
|
|||
typedef struct _snd_hdsp_peak_rms hdsp_peak_rms_t;
|
||||
|
||||
struct _snd_hdsp_peak_rms {
|
||||
unsigned int input_peaks[26];
|
||||
unsigned int playback_peaks[26];
|
||||
unsigned int output_peaks[28];
|
||||
unsigned long long input_rms[26];
|
||||
unsigned long long playback_rms[26];
|
||||
u_int32_t input_peaks[26];
|
||||
u_int32_t playback_peaks[26];
|
||||
u_int32_t output_peaks[28];
|
||||
u_int64_t input_rms[26];
|
||||
u_int64_t playback_rms[26];
|
||||
/* These are only used for H96xx cards */
|
||||
unsigned long long output_rms[26];
|
||||
u_int64_t output_rms[26];
|
||||
};
|
||||
|
||||
#define SNDRV_HDSP_IOCTL_GET_PEAK_RMS _IOR('H', 0x40, hdsp_peak_rms_t)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue