Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
8611645a
Commit
8611645a
authored
Aug 15, 2015
by
Luis de Bethencourt
Committed by
Tim-Philipp Müller
Feb 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtph265pay: Use GST_WARNING_OBJECT() instead of GST_WARNING()
https://bugzilla.gnome.org/show_bug.cgi?id=753228
parent
df724c41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gst/rtp/gstrtph265pay.c
gst/rtp/gstrtph265pay.c
+2
-2
No files found.
gst/rtp/gstrtph265pay.c
View file @
8611645a
...
...
@@ -874,7 +874,7 @@ gst_rtp_h265_pay_send_vps_sps_pps (GstRTPBasePayload * basepayload,
/* Not critical here; but throw a warning */
if
(
ret
!=
GST_FLOW_OK
)
{
sent_all_vps_sps_pps
=
FALSE
;
GST_WARNING
(
"Problem pushing VPS"
);
GST_WARNING
_OBJECT
(
basepayload
,
"Problem pushing VPS"
);
}
}
for
(
i
=
0
;
i
<
rtph265pay
->
sps
->
len
;
i
++
)
{
...
...
@@ -888,7 +888,7 @@ gst_rtp_h265_pay_send_vps_sps_pps (GstRTPBasePayload * basepayload,
/* Not critical here; but throw a warning */
if
(
ret
!=
GST_FLOW_OK
)
{
sent_all_vps_sps_pps
=
FALSE
;
GST_WARNING
(
"Problem pushing SPS"
);
GST_WARNING
_OBJECT
(
basepayload
,
"Problem pushing SPS"
);
}
}
for
(
i
=
0
;
i
<
rtph265pay
->
pps
->
len
;
i
++
)
{
...
...
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