Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Uses of Class
net.java.sip.communicator.impl.neomedia.RawPacket

Packages that use RawPacket
net.java.sip.communicator.impl.neomedia   
net.java.sip.communicator.impl.neomedia.transform   
net.java.sip.communicator.impl.neomedia.transform.csrc   
net.java.sip.communicator.impl.neomedia.transform.dtmf   
net.java.sip.communicator.impl.neomedia.transform.rtcp   
net.java.sip.communicator.impl.neomedia.transform.srtp   
net.java.sip.communicator.impl.neomedia.transform.zrtp   
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia
 

Fields in net.java.sip.communicator.impl.neomedia declared as RawPacket
protected  RawPacket RTPConnectorInputStream.pkt
          The packet data to be read out of this instance through its RTPConnectorInputStream.read(byte[], int, int) method.
 

Methods in net.java.sip.communicator.impl.neomedia that return RawPacket
protected  RawPacket RTPConnectorOutputStream.createRawPacket(byte[] buffer, int offset, int length)
          Creates a new RawPacket from a specific byte[] buffer in order to have this instance send its packet data through its RTPConnectorOutputStream.write(byte[], int, int) method.
protected  RawPacket RTPConnectorInputStream.createRawPacket(DatagramPacket datagramPacket)
          Creates a new RawPacket from a specific DatagramPacket in order to have this instance receive its packet data through its RTPConnectorInputStream.read(byte[], int, int) method.
 

Methods in net.java.sip.communicator.impl.neomedia with parameters of type RawPacket
protected  void RTPConnectorTCPOutputStream.doLogPacket(RawPacket packet, InetSocketAddress target)
          Log the packet.
protected  void RTPConnectorUDPOutputStream.doLogPacket(RawPacket packet, InetSocketAddress target)
          Log the packet.
protected abstract  void RTPConnectorOutputStream.doLogPacket(RawPacket packet, InetSocketAddress target)
          Logs a specific RawPacket associated with a specific remote address.
protected  void RTPConnectorTCPOutputStream.sendToTarget(RawPacket packet, InetSocketAddress target)
          Send the packet from this OutputStream.
protected  void RTPConnectorUDPOutputStream.sendToTarget(RawPacket packet, InetSocketAddress target)
          Send the packet from this OutputStream.
protected abstract  void RTPConnectorOutputStream.sendToTarget(RawPacket packet, InetSocketAddress target)
          Send the packet from this OutputStream.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform
 

Methods in net.java.sip.communicator.impl.neomedia.transform that return RawPacket
protected  RawPacket TransformTCPOutputStream.createRawPacket(byte[] buffer, int offset, int length)
          Creates a new RawPacket from a specific byte[] buffer in order to have this instance send its packet data through its RTPConnectorOutputStream.write(byte[], int, int) method.
protected  RawPacket TransformUDPOutputStream.createRawPacket(byte[] buffer, int offset, int length)
          Creates a new RawPacket from a specific byte[] buffer in order to have this instance send its packet data through its RTPConnectorOutputStream.write(byte[], int, int) method.
protected  RawPacket TransformUDPInputStream.createRawPacket(DatagramPacket datagramPacket)
          Creates a new RawPacket from a specific DatagramPacket in order to have this instance receive its packet data through its RTPConnectorInputStream.read(byte[], int, int) method.
protected  RawPacket TransformTCPInputStream.createRawPacket(DatagramPacket datagramPacket)
          Creates a new RawPacket from a specific DatagramPacket in order to have this instance receive its packet data through its RTPConnectorInputStream.read(byte[], int, int) method.
 RawPacket PacketTransformer.reverseTransform(RawPacket pkt)
          Reverse-transforms a specific packet (i.e.
 RawPacket PacketTransformer.transform(RawPacket pkt)
          Transforms a specific packet.
 

Methods in net.java.sip.communicator.impl.neomedia.transform with parameters of type RawPacket
 RawPacket PacketTransformer.reverseTransform(RawPacket pkt)
          Reverse-transforms a specific packet (i.e.
 RawPacket PacketTransformer.transform(RawPacket pkt)
          Transforms a specific packet.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.csrc
 

Methods in net.java.sip.communicator.impl.neomedia.transform.csrc that return RawPacket
 RawPacket CsrcTransformEngine.reverseTransform(RawPacket pkt)
          Extracts the list of CSRC identifiers and passes it to the MediaStream associated with this engine.
 RawPacket CsrcTransformEngine.transform(RawPacket pkt)
          Extracts the list of CSRC identifiers representing participants currently contributing to the media being sent by the MediaStream associated with this engine and (unless the list is empty) encodes them into the RawPacket.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.csrc with parameters of type RawPacket
 RawPacket CsrcTransformEngine.reverseTransform(RawPacket pkt)
          Extracts the list of CSRC identifiers and passes it to the MediaStream associated with this engine.
 RawPacket CsrcTransformEngine.transform(RawPacket pkt)
          Extracts the list of CSRC identifiers representing participants currently contributing to the media being sent by the MediaStream associated with this engine and (unless the list is empty) encodes them into the RawPacket.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.dtmf
 

Subclasses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.dtmf
 class DtmfRawPacket
          DtmfRawPacket represent an RTP Packet.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.dtmf that return RawPacket
 RawPacket DtmfTransformEngine.reverseTransform(RawPacket pkt)
          A stub meant to handle incoming DTMF packets.
 RawPacket DtmfTransformEngine.transform(RawPacket pkt)
          Replaces pkt with a DTMF packet if this engine is in a DTMF transmission mode or returns it unchanged otherwise.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.dtmf with parameters of type RawPacket
 RawPacket DtmfTransformEngine.reverseTransform(RawPacket pkt)
          A stub meant to handle incoming DTMF packets.
 RawPacket DtmfTransformEngine.transform(RawPacket pkt)
          Replaces pkt with a DTMF packet if this engine is in a DTMF transmission mode or returns it unchanged otherwise.
 

Constructors in net.java.sip.communicator.impl.neomedia.transform.dtmf with parameters of type RawPacket
DtmfRawPacket(RawPacket pkt)
          Used for incoming DTMF packets, creating DtmfRawPacket from RTP one.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.rtcp
 

Methods in net.java.sip.communicator.impl.neomedia.transform.rtcp that return RawPacket
 RawPacket StatisticsEngine.reverseTransform(RawPacket pkt)
          Returns the packet as we are listening just for sending packages.
 RawPacket StatisticsEngine.transform(RawPacket pkt)
          Finds the info needed for statistics in the packet and stores it.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.rtcp with parameters of type RawPacket
 RawPacket StatisticsEngine.reverseTransform(RawPacket pkt)
          Returns the packet as we are listening just for sending packages.
 RawPacket StatisticsEngine.transform(RawPacket pkt)
          Finds the info needed for statistics in the packet and stores it.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.srtp
 

Methods in net.java.sip.communicator.impl.neomedia.transform.srtp that return RawPacket
 RawPacket SRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypts a SRTCP packet
 RawPacket SRTPTransformer.reverseTransform(RawPacket pkt)
          Reverse-transforms a specific packet (i.e.
 RawPacket SRTCPTransformer.transform(RawPacket pkt)
          Encrypts a SRTCP packet
 RawPacket SRTPTransformer.transform(RawPacket pkt)
          Transforms a specific packet.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.srtp with parameters of type RawPacket
 void SRTPCryptoContext.processPacketAESCM(RawPacket pkt)
          Perform Counter Mode AES encryption / decryption
 void SRTCPCryptoContext.processPacketAESCM(RawPacket pkt, int index)
          Perform Counter Mode AES encryption / decryption
 void SRTPCryptoContext.processPacketAESF8(RawPacket pkt)
          Perform F8 Mode AES encryption / decryption
 void SRTCPCryptoContext.processPacketAESF8(RawPacket pkt, int index)
          Perform F8 Mode AES encryption / decryption
 RawPacket SRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypts a SRTCP packet
 RawPacket SRTPTransformer.reverseTransform(RawPacket pkt)
          Reverse-transforms a specific packet (i.e.
 boolean SRTCPCryptoContext.reverseTransformPacket(RawPacket pkt)
          Transform a SRTCP packet into a RTCP packet.
 boolean SRTPCryptoContext.reverseTransformPacket(RawPacket pkt)
          Transform a SRTP packet into a RTP packet.
 RawPacket SRTCPTransformer.transform(RawPacket pkt)
          Encrypts a SRTCP packet
 RawPacket SRTPTransformer.transform(RawPacket pkt)
          Transforms a specific packet.
 void SRTCPCryptoContext.transformPacket(RawPacket pkt)
          Transform a RTP packet into a SRTP packet.
 void SRTPCryptoContext.transformPacket(RawPacket pkt)
          Transform a RTP packet into a SRTP packet.
 

Uses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.zrtp
 

Subclasses of RawPacket in net.java.sip.communicator.impl.neomedia.transform.zrtp
 class ZrtpRawPacket
          ZRTP packet representation.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.zrtp that return RawPacket
 RawPacket ZRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.reverseTransform(RawPacket pkt)
          The input data stream calls this method to transform incoming packets.
 RawPacket ZRTCPTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.transform(RawPacket pkt)
          The data output stream calls this method to transform outgoing packets.
 

Methods in net.java.sip.communicator.impl.neomedia.transform.zrtp with parameters of type RawPacket
(package private) static boolean ZrtpRawPacket.isZrtpData(RawPacket pkt)
          Checks whether extension bit is set and if so is the extension header an zrtp one.
 RawPacket ZRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.reverseTransform(RawPacket pkt)
          The input data stream calls this method to transform incoming packets.
 RawPacket ZRTCPTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.transform(RawPacket pkt)
          The data output stream calls this method to transform outgoing packets.
 

Constructors in net.java.sip.communicator.impl.neomedia.transform.zrtp with parameters of type RawPacket
ZrtpRawPacket(RawPacket pkt)
          Construct an input ZrtpRawPacket using a received RTP raw packet.
 


Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Jitsi, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.