Sfoglia il codice sorgente

asoc : Fix for 384k clips on headphones

hw_refine failing for clips of sample rate
384000 as codec is configured to support 192000
sample rate as max. Due to this playback is not
happpening over headphones.

Change the max to 384000.

Change-Id: I2f9cad3bc708f3e4cc8cd38eb2ef2a98ec640f57
Aditya Mohan 4 anni fa
parent
commit
8301940a18
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      asoc/codecs/wcd938x/wcd938x.c

+ 2 - 2
asoc/codecs/wcd938x/wcd938x.c

@@ -4075,7 +4075,7 @@ static struct snd_soc_dai_driver wcd938x_dai[] = {
 			.stream_name = "WCD938X_AIF Playback",
 			.stream_name = "WCD938X_AIF Playback",
                         .rates = WCD938X_RATES | WCD938X_FRAC_RATES,
                         .rates = WCD938X_RATES | WCD938X_FRAC_RATES,
 			.formats = WCD938X_FORMATS,
 			.formats = WCD938X_FORMATS,
-			.rate_max = 192000,
+			.rate_max = 384000,
 			.rate_min = 8000,
 			.rate_min = 8000,
 			.channels_min = 1,
 			.channels_min = 1,
 			.channels_max = 4,
 			.channels_max = 4,
@@ -4084,7 +4084,7 @@ static struct snd_soc_dai_driver wcd938x_dai[] = {
 			.stream_name = "WCD938X_AIF Capture",
 			.stream_name = "WCD938X_AIF Capture",
                         .rates = WCD938X_RATES | WCD938X_FRAC_RATES,
                         .rates = WCD938X_RATES | WCD938X_FRAC_RATES,
 			.formats = WCD938X_FORMATS,
 			.formats = WCD938X_FORMATS,
-			.rate_max = 192000,
+			.rate_max = 384000,
 			.rate_min = 8000,
 			.rate_min = 8000,
 			.channels_min = 1,
 			.channels_min = 1,
 			.channels_max = 4,
 			.channels_max = 4,