mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
rtph263depay: fix compilation with gcc 5.0
This commit is contained in:
parent
90badeebad
commit
009a62fddb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue