mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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)) {
|
if (!F && payload_len > 4 && (GST_READ_UINT32_BE (payload) >> 10 == 0x20)) {
|
||||||
GST_DEBUG ("Mode A with PSC => frame start");
|
GST_DEBUG ("Mode A with PSC => frame start");
|
||||||
rtph263depay->start = TRUE;
|
rtph263depay->start = TRUE;
|
||||||
if (! !(payload[4] & 0x02) != I) {
|
if ((! !(payload[4] & 0x02)) != I) {
|
||||||
GST_DEBUG ("Wrong Picture Coding Type Flag in rtp header");
|
GST_DEBUG ("Wrong Picture Coding Type Flag in rtp header");
|
||||||
I = !I;
|
I = !I;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue