mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
bluetooth: adjust sync to source with different sample spec
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/544>
This commit is contained in:
parent
d21d0d89a5
commit
4ec89c27c9
1 changed files with 4 additions and 1 deletions
|
|
@ -1407,7 +1407,10 @@ static void thread_func(void *userdata) {
|
||||||
* If source and sink sample specifications are not equal,
|
* If source and sink sample specifications are not equal,
|
||||||
* expected write size needs to be adjusted accordingly.
|
* expected write size needs to be adjusted accordingly.
|
||||||
*/
|
*/
|
||||||
bytes_to_write += n_read;
|
if (pa_sample_spec_equal(&u->encoder_sample_spec, &u->decoder_sample_spec))
|
||||||
|
bytes_to_write += n_read;
|
||||||
|
else
|
||||||
|
bytes_to_write += pa_usec_to_bytes(pa_bytes_to_usec(n_read, &u->decoder_sample_spec), &u->encoder_sample_spec);
|
||||||
blocks_to_write += bytes_to_write / u->write_block_size;
|
blocks_to_write += bytes_to_write / u->write_block_size;
|
||||||
bytes_to_write = bytes_to_write % u->write_block_size;
|
bytes_to_write = bytes_to_write % u->write_block_size;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue