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:
Wim Taymans 2026-04-16 12:11:13 +02:00
parent 54aba261d2
commit adad89dc0e
4 changed files with 12 additions and 12 deletions

View file

@ -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;