You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this code is using Java ">>" which use sign bit for filling. The RFC may be refering to normal shift where "0" is used for filling. In that case java code must use ">>>"
https://github.com/RestComm/mediaserver/blob/master/io/rtp/src/main/java/org/mobicents/media/server/impl/rtp/JitterBuffer.java#L143
this code is using Java ">>" which use sign bit for filling. The RFC may be refering to normal shift where "0" is used for filling. In that case java code must use ">>>"