mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
ALSA: compress: allow setting codec params after next track
For gapless playback it is possible that each track can have different codec profile with same decoder, for example we have WMA album, we may have different tracks as WMA v9, WMA v10 and so on Or if DSP's like QDSP have abililty to switch decoders on single stream for each track, then this call could be used to set new codec parameters. Existing code does not allow to change this profile while doing gapless playback. Reuse existing SNDRV_COMPRESS_SET_PARAMS to set this new track params along some additional checks to enforce proper state machine. With this new changes now the user can call SNDRV_COMPRESS_SET_PARAMS anytime after setting next track and additional check in write should also ensure that params are set before writing new data. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Acked-by: Vinod Koul <vkoul@kernel.org> Link: https://lore.kernel.org/r/20230619092805.21649-1-srinivas.kandagatla@linaro.org Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
79597c8bf6
commit
7ea9ee0064
@ -268,11 +268,12 @@ with setting of meta_data and signalling for next track ::
|
||||
| |
|
||||
| V
|
||||
| +----------+
|
||||
| | |
|
||||
| |NEXT_TRACK|
|
||||
| | |
|
||||
| +----------+
|
||||
| |
|
||||
| compr_set_params() | |
|
||||
| +-----------|NEXT_TRACK|
|
||||
| | | |
|
||||
| | +--+-------+
|
||||
| | | |
|
||||
| +--------------+ |
|
||||
| |
|
||||
| | compr_partial_drain()
|
||||
| |
|
||||
|
@ -589,7 +589,7 @@ snd_compr_set_params(struct snd_compr_stream *stream, unsigned long arg)
|
||||
struct snd_compr_params *params;
|
||||
int retval;
|
||||
|
||||
if (stream->runtime->state == SNDRV_PCM_STATE_OPEN) {
|
||||
if (stream->runtime->state == SNDRV_PCM_STATE_OPEN || stream->next_track) {
|
||||
/*
|
||||
* we should allow parameter change only when stream has been
|
||||
* opened not in other cases
|
||||
@ -612,6 +612,9 @@ snd_compr_set_params(struct snd_compr_stream *stream, unsigned long arg)
|
||||
if (retval)
|
||||
goto out;
|
||||
|
||||
if (stream->next_track)
|
||||
goto out;
|
||||
|
||||
stream->metadata_set = false;
|
||||
stream->next_track = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user