mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
a2dp-ldac: free handle on error
This commit is contained in:
parent
908e3f3d1f
commit
67694a1491
1 changed files with 4 additions and 0 deletions
|
|
@ -131,6 +131,8 @@ static int codec_get_num_blocks(void *data, size_t mtu)
|
||||||
size_t rtp_size = sizeof(struct rtp_header) + sizeof(struct rtp_payload);
|
size_t rtp_size = sizeof(struct rtp_header) + sizeof(struct rtp_payload);
|
||||||
size_t frame_count = (mtu - rtp_size) / this->frame_length;
|
size_t frame_count = (mtu - rtp_size) / this->frame_length;
|
||||||
|
|
||||||
|
this->mtu = mtu;
|
||||||
|
|
||||||
/* frame_count is only 4 bit number */
|
/* frame_count is only 4 bit number */
|
||||||
if (frame_count > 15)
|
if (frame_count > 15)
|
||||||
frame_count = 15;
|
frame_count = 15;
|
||||||
|
|
@ -243,6 +245,8 @@ static void *codec_init(uint32_t flags, void *config, size_t config_len, struct
|
||||||
error_errno:
|
error_errno:
|
||||||
res = -errno;
|
res = -errno;
|
||||||
error:
|
error:
|
||||||
|
if (this->ldac)
|
||||||
|
ldacBT_free_handle(this->ldac);
|
||||||
free(this);
|
free(this);
|
||||||
errno = -res;
|
errno = -res;
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue