Skip to content

Commit

Permalink
ASoC: Intel: remove codec memeber from codec structs
Browse files Browse the repository at this point in the history
As we already have a memeber struct snd_sst_params.codec to fill this.
so removing duplicate instance

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
  • Loading branch information
Vinod Koul authored and Mark Brown committed May 16, 2014
1 parent bd17aa4 commit d7b54c3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions sound/soc/intel/sst-mfld-dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ enum stream_type {
};

struct snd_pcm_params {
u16 codec; /* codec type */
u8 num_chan; /* 1=Mono, 2=Stereo */
u8 pcm_wd_sz; /* 16/24 - bit*/
u32 reserved; /* Bitrate in bits per second */
Expand All @@ -49,7 +48,6 @@ struct snd_pcm_params {

/* MP3 Music Parameters Message */
struct snd_mp3_params {
u16 codec;
u8 num_chan; /* 1=Mono, 2=Stereo */
u8 pcm_wd_sz; /* 16/24 - bit*/
u8 crc_check; /* crc_check - disable (0) or enable (1) */
Expand All @@ -63,7 +61,6 @@ struct snd_mp3_params {

/* AAC Music Parameters Message */
struct snd_aac_params {
u16 codec;
u8 num_chan; /* 1=Mono, 2=Stereo*/
u8 pcm_wd_sz; /* 16/24 - bit*/
u8 bdownsample; /*SBR downsampling 0 - disable 1 -enabled AAC+ only */
Expand All @@ -77,7 +74,6 @@ struct snd_aac_params {

/* WMA Music Parameters Message */
struct snd_wma_params {
u16 codec;
u8 num_chan; /* 1=Mono, 2=Stereo */
u8 pcm_wd_sz; /* 16/24 - bit*/
u32 brate; /* Use the hard coded value. */
Expand Down
2 changes: 0 additions & 2 deletions sound/soc/intel/sst-mfld-platform-compress.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,13 @@ static int sst_platform_compr_set_params(struct snd_compr_stream *cstream,
switch (params->codec.id) {
case SND_AUDIOCODEC_MP3: {
str_params.codec = SST_CODEC_TYPE_MP3;
str_params.sparams.uc.mp3_params.codec = SST_CODEC_TYPE_MP3;
str_params.sparams.uc.mp3_params.num_chan = params->codec.ch_in;
str_params.sparams.uc.mp3_params.pcm_wd_sz = 16;
break;
}

case SND_AUDIOCODEC_AAC: {
str_params.codec = SST_CODEC_TYPE_AAC;
str_params.sparams.uc.aac_params.codec = SST_CODEC_TYPE_AAC;
str_params.sparams.uc.aac_params.num_chan = params->codec.ch_in;
str_params.sparams.uc.aac_params.pcm_wd_sz = 16;
if (params->codec.format == SND_AUDIOSTREAMFORMAT_MP4ADTS)
Expand Down
1 change: 0 additions & 1 deletion sound/soc/intel/sst-mfld-platform-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ static void sst_fill_pcm_params(struct snd_pcm_substream *substream,
struct sst_pcm_params *param)
{

param->codec = SST_CODEC_TYPE_PCM;
param->num_chan = (u8) substream->runtime->channels;
param->pcm_wd_sz = substream->runtime->sample_bits;
param->reserved = 0;
Expand Down

0 comments on commit d7b54c3

Please sign in to comment.