opusenc: fix pointer mismatch in memcpy on drain
This commit is contained in:
parent
85afc77dea
commit
c5c67c1913
@ -540,7 +540,7 @@ gst_opus_enc_encode (GstOpusEnc * enc, GstBuffer * buf)
|
|||||||
|
|
||||||
size = ((bsize / bytes) + 1) * bytes;
|
size = ((bsize / bytes) + 1) * bytes;
|
||||||
mdata = g_malloc0 (size);
|
mdata = g_malloc0 (size);
|
||||||
memcpy (data, bdata, bsize);
|
memcpy (mdata, bdata, bsize);
|
||||||
gst_buffer_unmap (buf, bdata, bsize);
|
gst_buffer_unmap (buf, bdata, bsize);
|
||||||
bdata = NULL;
|
bdata = NULL;
|
||||||
data = mdata;
|
data = mdata;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user