Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Camilo Celis Guzman
gst-plugins-good
Commits
5340de5c
Commit
5340de5c
authored
Sep 13, 2020
by
Camilo Celis Guzman
Browse files
rtp/vrawpay: use alloc_output_buffer from base class
Part-of: <
gstreamer/gst-plugins-good!726
>
parent
cfae2a37
Pipeline
#201334
passed with stages
in 35 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gst/rtp/gstrtpvrawpay.c
View file @
5340de5c
...
...
@@ -353,7 +353,7 @@ gst_rtp_vraw_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buffer)
/* get the max allowed payload length size, we try to fill the complete MTU */
left
=
gst_rtp_buffer_calc_payload_len
(
mtu
,
0
,
0
);
out
=
gst_rtp_b
uffer_new_allocate
(
left
,
0
,
0
);
out
=
gst_rtp_b
ase_payload_allocate_output_buffer
(
payload
,
left
,
0
,
0
);
if
(
discont
)
{
GST_BUFFER_FLAG_SET
(
out
,
GST_BUFFER_FLAG_DISCONT
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment