@@ -494,8 +494,8 @@ software parameter.
494
494
There are two functions allowing link multiple streams together. In the
495
495
case, the linking means that all operations are synchronized. Because the
496
496
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
499
499
for hardware synchronized streams. When the #snd_pcm_link()
500
500
function is called, all operations managing the stream state for these two
501
501
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)
3948
3948
return params -> fifo_size ;
3949
3949
}
3950
3950
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
+
3951
3970
/**
3952
3971
* \brief Fill params with a full configuration space for a PCM
3953
3972
* \param pcm PCM handle
@@ -7332,17 +7351,20 @@ unsigned int snd_pcm_info_get_subdevices_avail(const snd_pcm_info_t *obj)
7332
7351
}
7333
7352
7334
7353
/**
7335
- * \brief Get hardware synchronization ID from a PCM info container
7354
+ * \brief (DEPRECATED) Get hardware synchronization ID from a PCM info container
7336
7355
* \param obj PCM info container
7337
7356
* \return hardware synchronization ID
7338
7357
*/
7339
7358
snd_pcm_sync_id_t snd_pcm_info_get_sync (const snd_pcm_info_t * obj )
7340
7359
{
7341
7360
snd_pcm_sync_id_t res ;
7342
7361
assert (obj );
7343
- memcpy (& res , & obj -> sync , sizeof (res ));
7362
+ bzero (& res , sizeof (res ));
7344
7363
return res ;
7345
7364
}
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
7346
7368
7347
7369
/**
7348
7370
* \brief Set wanted device inside a PCM info container (see #snd_ctl_pcm_info)
0 commit comments