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
|
|
@ -36,7 +36,7 @@ static void pa_pstream_send_tagstruct_with_ancil_data(pa_pstream *p, pa_tagstruc
|
|||
pa_assert(t);
|
||||
|
||||
pa_assert_se(data = pa_tagstruct_data(t, &length));
|
||||
pa_assert_se(packet = pa_packet_new_dynamic(pa_xmemdup(data, length), length));
|
||||
pa_assert_se(packet = pa_packet_new_data(data, length));
|
||||
pa_tagstruct_free(t);
|
||||
|
||||
pa_pstream_send_packet(p, packet, ancil_data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue