diff options
author | Wim Taymans <wtaymans@redhat.com> | 2015-02-10 18:53:53 +0100 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2015-02-10 18:54:24 +0100 |
commit | 009a62fddb9650b05af0248dc4943d8047611d62 (patch) | |
tree | 40431240e7690f79a69e7967544ffad056473e3d | |
parent | 90badeebadc6abaaa1a16d1f2b6686cbdd5eb322 (diff) |
rtph263depay: fix compilation with gcc 5.0
-rw-r--r-- | gst/rtp/gstrtph263depay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtp/gstrtph263depay.c b/gst/rtp/gstrtph263depay.c index 20e8ccba5..83e901288 100644 --- a/gst/rtp/gstrtph263depay.c +++ b/gst/rtp/gstrtph263depay.c @@ -252,7 +252,7 @@ gst_rtp_h263_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf) if (!F && payload_len > 4 && (GST_READ_UINT32_BE (payload) >> 10 == 0x20)) { GST_DEBUG ("Mode A with PSC => frame start"); rtph263depay->start = TRUE; - if (! !(payload[4] & 0x02) != I) { + if ((! !(payload[4] & 0x02)) != I) { GST_DEBUG ("Wrong Picture Coding Type Flag in rtp header"); I = !I; } |