mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-08 13:29:59 -05:00
packet: Introduce pa_packet_new_data() to copy data into a newly created packet
v2: (thanks Alexander Patrakov) * turn check in pa_packet_new() into assert() Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
parent
c1a7f0e326
commit
f92300cc92
3 changed files with 16 additions and 1 deletions
|
|
@ -60,6 +60,17 @@ pa_packet* pa_packet_new(size_t length) {
|
|||
return p;
|
||||
}
|
||||
|
||||
pa_packet* pa_packet_new_data(const void* data, size_t length) {
|
||||
pa_packet *p = pa_packet_new(length);
|
||||
|
||||
pa_assert(data);
|
||||
pa_assert(length > 0);
|
||||
|
||||
memcpy(p->data, data, length);
|
||||
|
||||
return p;
|
||||
}
|
||||
|
||||
pa_packet* pa_packet_new_dynamic(void* data, size_t length) {
|
||||
pa_packet *p;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue