Commit 20ff1456 authored by Vinod Koul's avatar Vinod Koul Committed by Mark Brown

ALSA: compress: Add wma decoder params

Some WMA decoders like WMAv10 etc need some additional encoder option
parameters, so add these as WMA decoder params.
Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
Reviewed-by: default avatarTakashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20200316055221.1944464-3-vkoul@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3bd7ac41
...@@ -329,6 +329,13 @@ struct snd_dec_flac { ...@@ -329,6 +329,13 @@ struct snd_dec_flac {
__u16 reserved; __u16 reserved;
} __attribute__((packed, aligned(4))); } __attribute__((packed, aligned(4)));
struct snd_dec_wma {
__u32 encoder_option;
__u32 adv_encoder_option;
__u32 adv_encoder_option2;
__u32 reserved;
} __attribute__((packed, aligned(4)));
union snd_codec_options { union snd_codec_options {
struct snd_enc_wma wma; struct snd_enc_wma wma;
struct snd_enc_vorbis vorbis; struct snd_enc_vorbis vorbis;
...@@ -336,6 +343,7 @@ union snd_codec_options { ...@@ -336,6 +343,7 @@ union snd_codec_options {
struct snd_enc_flac flac; struct snd_enc_flac flac;
struct snd_enc_generic generic; struct snd_enc_generic generic;
struct snd_dec_flac flac_d; struct snd_dec_flac flac_d;
struct snd_dec_wma wma_d;
} __attribute__((packed, aligned(4))); } __attribute__((packed, aligned(4)));
/** struct snd_codec_desc - description of codec capabilities /** struct snd_codec_desc - description of codec capabilities
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment