DePacketizer class from org.jitsi.impl.neomedia.codec.video.h264 package is creating NAL unit with start code from H264 class
static final byte[] NAL_PREFIX = {0, 0, 0, 1}; . But, In Packetizer class, 3 bytes start code ({0, 0,1}) only considered to find out NAL unit packets from stream.
We should use same "NAL_PREFIX" (4 bytes) constant should be used in Packetizer to avoid confusion