Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
869e21bd
Commit
869e21bd
authored
Sep 19, 2015
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtp{vorbis,theora}pay: Store headers in the packet buffers lists, not a NULL buffer
https://bugzilla.gnome.org/show_bug.cgi?id=755265
parent
acf6c7f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
gst/rtp/gstrtptheorapay.c
gst/rtp/gstrtptheorapay.c
+1
-1
gst/rtp/gstrtpvorbispay.c
gst/rtp/gstrtpvorbispay.c
+1
-1
No files found.
gst/rtp/gstrtptheorapay.c
View file @
869e21bd
...
...
@@ -708,7 +708,7 @@ gst_rtp_theora_pay_payload_buffer (GstRtpTheoraPay * rtptheorapay, guint8 TDT,
for
(
l
=
rtptheorapay
->
headers
;
l
;
l
=
l
->
next
)
rtptheorapay
->
packet_buffers
=
g_list_prepend
(
rtptheorapay
->
packet_buffers
,
gst_buffer_ref
(
buffer
));
gst_buffer_ref
(
l
->
data
));
}
/* only first (only) configuration cuts length field */
...
...
gst/rtp/gstrtpvorbispay.c
View file @
869e21bd
...
...
@@ -684,7 +684,7 @@ gst_rtp_vorbis_pay_payload_buffer (GstRtpVorbisPay * rtpvorbispay, guint8 VDT,
for
(
l
=
rtpvorbispay
->
headers
;
l
;
l
=
l
->
next
)
rtpvorbispay
->
packet_buffers
=
g_list_prepend
(
rtpvorbispay
->
packet_buffers
,
gst_buffer_ref
(
buffer
));
gst_buffer_ref
(
l
->
data
));
}
/* only first (only) configuration cuts length field */
...
...
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