Skip to content

Commit b154d91

Browse files
committed
pcm: implement snd_pcm_hw_params_get_sync() and obsolete snd_pcm_info_get_sync()
Use the new clock source mechanism to get information about similar PCM clock sources for PCM streams. Link: https://lore.kernel.org/linux-sound/20240625172836.589380-1-perex@perex.cz/ Signed-off-by: Jaroslav Kysela <perex@perex.cz>
1 parent 9b6dfb3 commit b154d91

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed

include/pcm.h

+4
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,9 @@ typedef union _snd_pcm_sync_id {
508508
unsigned int id32[4];
509509
} snd_pcm_sync_id_t;
510510

511+
/** synchronization ID size (see snd_pcm_hw_params_get_sync) */
512+
#define SND_PCM_HW_PARAMS_SYNC_SIZE 16
513+
511514
/** Infinite wait for snd_pcm_wait() */
512515
#define SND_PCM_WAIT_INFINITE (-1)
513516
/** Wait for next i/o in snd_pcm_wait() */
@@ -747,6 +750,7 @@ int snd_pcm_hw_params_get_rate_numden(const snd_pcm_hw_params_t *params,
747750
unsigned int *rate_den);
748751
int snd_pcm_hw_params_get_sbits(const snd_pcm_hw_params_t *params);
749752
int snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t *params);
753+
const unsigned char * snd_pcm_hw_params_get_sync(const snd_pcm_hw_params_t *params);
750754

751755
#if 0
752756
typedef struct _snd_pcm_hw_strategy snd_pcm_hw_strategy_t;

include/sound/uapi/asound.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,8 @@ struct snd_pcm_hw_params {
426426
unsigned int rate_num; /* R: rate numerator */
427427
unsigned int rate_den; /* R: rate denominator */
428428
snd_pcm_uframes_t fifo_size; /* R: chip FIFO size in frames */
429-
unsigned char reserved[64]; /* reserved for future */
429+
unsigned char sync[16]; /* R: synchronization ID (perfect sync - one clock source) */
430+
unsigned char reserved[48]; /* reserved for future */
430431
};
431432

432433
enum {

src/pcm/pcm.c

+26-4
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,8 @@ software parameter.
494494
There are two functions allowing link multiple streams together. In the
495495
case, the linking means that all operations are synchronized. Because the
496496
drivers cannot guarantee the synchronization (sample resolution) on hardware
497-
lacking this feature, the #snd_pcm_info_get_sync() function
498-
returns synchronization ID - #snd_pcm_sync_id_t, which is equal
497+
lacking this feature, the #snd_pcm_hw_params_get_sync() function
498+
returns 16-byte synchronization ID, which is equal
499499
for hardware synchronized streams. When the #snd_pcm_link()
500500
function is called, all operations managing the stream state for these two
501501
streams are joined. The opposite function is #snd_pcm_unlink().
@@ -3948,6 +3948,25 @@ int snd_pcm_hw_params_get_fifo_size(const snd_pcm_hw_params_t *params)
39483948
return params->fifo_size;
39493949
}
39503950

3951+
/**
3952+
* \brief Get hardware synchronization ID from a PCM info container
3953+
* \param params Configuration space
3954+
* \return 16-byte synchronization ID (use #SND_PCM_HW_PARAMS_SYNC_SIZE)
3955+
*
3956+
* This synchronization ID determines the similar clocks for the
3957+
* PCM stream between multiple devices (including different cards).
3958+
* "All zeros" means "not set". The contents of the ID can be used
3959+
* only for a comparison with the contents of another ID returned
3960+
* from this function. Applications should not do a comparison with
3961+
* hard-coded values, because the implementation generating such
3962+
* synchronization IDs may be changed in future.
3963+
*/
3964+
const unsigned char *snd_pcm_hw_params_get_sync(const snd_pcm_hw_params_t *params)
3965+
{
3966+
assert(params);
3967+
return params->sync;
3968+
}
3969+
39513970
/**
39523971
* \brief Fill params with a full configuration space for a PCM
39533972
* \param pcm PCM handle
@@ -7332,17 +7351,20 @@ unsigned int snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t *obj)
73327351
}
73337352

73347353
/**
7335-
* \brief Get hardware synchronization ID from a PCM info container
7354+
* \brief (DEPRECATED) Get hardware synchronization ID from a PCM info container
73367355
* \param obj PCM info container
73377356
* \return hardware synchronization ID
73387357
*/
73397358
snd_pcm_sync_id_t snd_pcm_info_get_sync(const snd_pcm_info_t *obj)
73407359
{
73417360
snd_pcm_sync_id_t res;
73427361
assert(obj);
7343-
memcpy(&res, &obj->sync, sizeof(res));
7362+
bzero(&res, sizeof(res));
73447363
return res;
73457364
}
7365+
#ifndef DOC_HIDDEN
7366+
link_warning(snd_pcm_info_get_sync, "Warning: snd_pcm_info_get_sync is deprecated, consider to use snd_pcm_hw_params_get_sync");
7367+
#endif
73467368

73477369
/**
73487370
* \brief Set wanted device inside a PCM info container (see #snd_ctl_pcm_info)

0 commit comments

Comments
 (0)