projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
021333a
)
rtph265depay: PPS replaces old PPS if it has the same id
author
Luis de Bethencourt
<luis@debethencourt.com>
Wed, 12 Aug 2015 15:43:48 +0000
(16:43 +0100)
committer
Luis de Bethencourt
<luis@debethencourt.com>
Wed, 12 Aug 2015 15:51:18 +0000
(16:51 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=753228
gst/rtp/gstrtph265depay.c
patch
|
blob
|
history
diff --git
a/gst/rtp/gstrtph265depay.c
b/gst/rtp/gstrtph265depay.c
index
de4e202
..
5ee4a74
100644
(file)
--- a/
gst/rtp/gstrtph265depay.c
+++ b/
gst/rtp/gstrtph265depay.c
@@
-686,7
+686,7
@@
gst_rtp_h265_add_vps_sps_pps (GstElement * rtph265, GPtrArray * vps_array,
gst_buffer_map (pps, &ppsmap, GST_MAP_READ);
parse_pps (&ppsmap, &tmp_sps_id, &tmp_pps_id);
- if (
sps_id == tmp_sps_id &&
pps_id == tmp_pps_id) {
+ if (pps_id == tmp_pps_id) {
if (map.size == ppsmap.size &&
memcmp (map.data, ppsmap.data, ppsmap.size) == 0) {
GST_LOG_OBJECT (rtph265, "Unchanged PPS %u:%u, not updating", sps_id,