mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-16 08:56:42 -05:00
added the reserved and driver-data field for dsp loader structs.
This commit is contained in:
parent
d13a14b79e
commit
a613cacd4d
1 changed files with 2 additions and 0 deletions
|
|
@ -126,6 +126,7 @@ struct sndrv_hwdep_dsp_status {
|
||||||
unsigned int num_dsps; /* R: number of DSP images to transfer */
|
unsigned int num_dsps; /* R: number of DSP images to transfer */
|
||||||
unsigned int dsp_loaded; /* R: bit flags indicating the loaded DSPs */
|
unsigned int dsp_loaded; /* R: bit flags indicating the loaded DSPs */
|
||||||
unsigned int chip_ready; /* R: 1 = initialization finished */
|
unsigned int chip_ready; /* R: 1 = initialization finished */
|
||||||
|
unsigned char reserved[16]; /* reserved for future use */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct sndrv_hwdep_dsp_image {
|
struct sndrv_hwdep_dsp_image {
|
||||||
|
|
@ -133,6 +134,7 @@ struct sndrv_hwdep_dsp_image {
|
||||||
unsigned char name[64]; /* W: ID (e.g. file name) */
|
unsigned char name[64]; /* W: ID (e.g. file name) */
|
||||||
unsigned char *image; /* W: binary image */
|
unsigned char *image; /* W: binary image */
|
||||||
size_t length; /* W: size of image in bytes */
|
size_t length; /* W: size of image in bytes */
|
||||||
|
unsigned long driver_data; /* W: driver-specific data */
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue