mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Fix typos
Fixed typos of int types. Added inclusion of stdint.h.
This commit is contained in:
parent
e10aed638e
commit
3e5580d053
1 changed files with 8 additions and 6 deletions
|
|
@ -19,6 +19,8 @@
|
|||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define HDSP_MATRIX_MIXER_SIZE 2048
|
||||
|
||||
typedef enum {
|
||||
|
|
@ -32,13 +34,13 @@ typedef enum {
|
|||
typedef struct _snd_hdsp_peak_rms hdsp_peak_rms_t;
|
||||
|
||||
struct _snd_hdsp_peak_rms {
|
||||
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];
|
||||
uint32_t input_peaks[26];
|
||||
uint32_t playback_peaks[26];
|
||||
uint32_t output_peaks[28];
|
||||
uint64_t input_rms[26];
|
||||
uint64_t playback_rms[26];
|
||||
/* These are only used for H96xx cards */
|
||||
u_int64_t output_rms[26];
|
||||
uint64_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