Re: [PATCH 06/11] ASoC: q6asm: add support to remove intial and trailing silence

2020-07-08 Thread Srinivas Kandagatla
Thanks Pierre for review, On 07/07/2020 17:55, Pierre-Louis Bossart wrote: +int q6asm_stream_remove_initial_silence(struct audio_client *ac, +    uint32_t stream_id, +    uint32_t initial_samples) +{ +    return q6asm_stream_remove_silence(ac, stream_id, +

Re: [PATCH 06/11] ASoC: q6asm: add support to remove intial and trailing silence

2020-07-07 Thread Pierre-Louis Bossart
+int q6asm_stream_remove_initial_silence(struct audio_client *ac, + uint32_t stream_id, + uint32_t initial_samples) +{ + return q6asm_stream_remove_silence(ac, stream_id, +

[PATCH 06/11] ASoC: q6asm: add support to remove intial and trailing silence

2020-07-07 Thread Srinivas Kandagatla
This patch adds support to ASM_DATA_CMD_REMOVE_INITIAL_SILENCE and ASM_DATA_CMD_REMOVE_TRAILING_SILENCE asm command to support compressed metadata for gapless playback. Signed-off-by: Srinivas Kandagatla --- sound/soc/qcom/qdsp6/q6asm.c | 53