From: Luis de Bethencourt Date: Wed, 12 Aug 2015 15:43:48 +0000 (+0100) Subject: rtph265depay: PPS replaces old PPS if it has the same id X-Git-Tag: 1.6.0~189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4edf2ac1c51011cce4a52306e7c16bae489b436a;p=platform%2Fupstream%2Fgst-plugins-bad.git rtph265depay: PPS replaces old PPS if it has the same id https://bugzilla.gnome.org/show_bug.cgi?id=753228 --- diff --git a/gst/rtp/gstrtph265depay.c b/gst/rtp/gstrtph265depay.c index de4e20292..5ee4a74e7 100644 --- 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,