mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-20 06:46:31 -04:00
add spa_memcpy to more places
Use spa_memcpy yo where we memcpy data so that when the debug option is enabled we can see more.
This commit is contained in:
parent
54aba261d2
commit
adad89dc0e
4 changed files with 12 additions and 12 deletions
|
|
@ -389,7 +389,7 @@ static int encoded_playback_fill(struct data *d, void *dest, unsigned int n_fram
|
|||
break;
|
||||
}
|
||||
|
||||
memcpy(dest_ptr, packet->data, packet->size);
|
||||
spa_memcpy(dest_ptr, packet->data, packet->size);
|
||||
|
||||
accumulated_duration += packet->duration;
|
||||
dest_ptr += packet->size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue