Class DePacketizer.VP8PayloadHeader
- java.lang.Object
-
- org.jitsi.impl.neomedia.codec.video.vp8.DePacketizer.VP8PayloadHeader
-
- Enclosing class:
- DePacketizer
public static class DePacketizer.VP8PayloadHeader extends Object
A class that represents the VP8 Payload Header structure defined in draft-ietf-payload-vp8-10
-
-
Constructor Summary
Constructors Constructor Description VP8PayloadHeader()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisKeyFrame(byte[] input, int offset)Returns true if the P (inverse key frame flag) field of the VP8 Payload Header at offset offset in input is 0.
-
-
-
Method Detail
-
isKeyFrame
public static boolean isKeyFrame(byte[] input, int offset)Returns true if the P (inverse key frame flag) field of the VP8 Payload Header at offset offset in input is 0.- Returns:
- true if the P (inverse key frame flag) field of the VP8 Payload Header at offset offset in input is 0, false otherwise.
-
-