mirror of https://github.com/thesofproject/sof.git
Topology: BDW, BYT, CHT: Reduce buffer size max for media PCM
This change prevents the IPC error that happens if aplay or speaker-test uses larger than 64 kB buffer size. The buffer setting in PCM_CAPABILITIES() is now the same as for low latency PCM. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
parent
eaf3794105
commit
25c1d0fef7
|
@ -104,7 +104,9 @@ W_PIPELINE(SCHED_COMP, SCHEDULE_PERIOD, SCHEDULE_PRIORITY, SCHEDULE_CORE, SCHEDU
|
|||
|
||||
# PCM capabilities supported by FW
|
||||
|
||||
PCM_CAPABILITIES(Media Playback PCM_ID, `S32_LE,S24_LE,S16_LE', PCM_MIN_RATE, PCM_MAX_RATE, 2, PIPELINE_CHANNELS, 2, 32, 192, 262144, 8388608, 8388608)
|
||||
PCM_CAPABILITIES(Media Playback PCM_ID, `S32_LE,S24_LE,S16_LE',
|
||||
PCM_MIN_RATE, PCM_MAX_RATE, 2, PIPELINE_CHANNELS,
|
||||
2, 16, 192, 16384, 65536, 65536)
|
||||
|
||||
# PCM Media Playback
|
||||
SectionPCM.STR(Media Playback PCM_ID) {
|
||||
|
|
Loading…
Reference in New Issue