mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-15 06:59:58 -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
|
|
@ -29,6 +29,10 @@ typedef struct pa_packet pa_packet;
|
|||
* on length) */
|
||||
pa_packet* pa_packet_new(size_t length);
|
||||
|
||||
/* create packet (either of type appended or dynamic depending on length)
|
||||
* and copy data */
|
||||
pa_packet* pa_packet_new_data(const void* data, size_t length);
|
||||
|
||||
/* data must have been malloc()ed; the packet takes ownership of the memory,
|
||||
* i.e. memory is free()d with the packet */
|
||||
pa_packet* pa_packet_new_dynamic(void* data, size_t length);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue