org.red5.io.utils
public class IOUtils extends Object
Constructor and Description |
---|
IOUtils() |
Modifier and Type | Method and Description |
---|---|
static void |
debug(org.slf4j.Logger log,
String msg,
IoBuffer buf)
Format debug message
|
static void |
main(String[] args) |
static int |
readExtendedMediumInt(ByteBuffer in)
Reads extended medium int
|
static int |
readExtendedMediumInt(IoBuffer in)
Reads extended medium int
|
static int |
readMediumInt(ByteBuffer in)
Reads medium int
|
static int |
readMediumInt(IoBuffer in)
Reads medium int
|
static int |
readReverseInt(IoBuffer in)
Reads reverse int
|
static int |
readUnsignedMediumInt(IoBuffer in)
Reads unsigned medium integer
|
static String |
toString(IoBuffer buf)
String representation of byte buffer
|
static void |
writeExtendedMediumInt(ByteBuffer out,
int value)
Writes extended medium integer (equivalent to a regular integer whose
most significant byte has been moved to its end, past its least significant
byte)
|
static void |
writeExtendedMediumInt(IoBuffer out,
int value)
Writes extended medium integer (equivalent to a regular integer whose
most significant byte has been moved to its end, past its least significant
byte)
|
static void |
writeMediumInt(ByteBuffer out,
int value)
Writes medium integer
|
static void |
writeMediumInt(IoBuffer out,
int value)
Writes medium integer
|
static void |
writeReverseInt(IoBuffer out,
int value)
Writes integer in reverse order
|
static void |
writeUnsignedByte(ByteBuffer out,
byte value)
Writes an unsigned byte value to the supplied buffer.
|
public static final Charset CHARSET
public static final void writeReverseInt(IoBuffer out, int value)
out
- Data buffer to fillvalue
- Integerpublic static final void writeMediumInt(IoBuffer out, int value)
out
- Output buffervalue
- Integer to writepublic static final void writeMediumInt(ByteBuffer out, int value)
out
- Output buffervalue
- Integer to writepublic static final void writeExtendedMediumInt(IoBuffer out, int value)
out
- Output buffervalue
- Integer to writepublic static final void writeExtendedMediumInt(ByteBuffer out, int value)
out
- Output buffervalue
- Integer to writepublic static final void writeUnsignedByte(ByteBuffer out, byte value)
out
- Output buffervalue
- Byte to writepublic static final int readUnsignedMediumInt(IoBuffer in)
in
- Unsigned medium int sourcepublic static final int readMediumInt(ByteBuffer in)
in
- Sourcepublic static final int readMediumInt(IoBuffer in)
in
- Sourcepublic static final int readExtendedMediumInt(IoBuffer in)
in
- Sourcepublic static final int readExtendedMediumInt(ByteBuffer in)
in
- Sourcepublic static final int readReverseInt(IoBuffer in)
in
- Sourcepublic static final void debug(org.slf4j.Logger log, String msg, IoBuffer buf)
log
- Loggermsg
- Messagebuf
- Byte buffer to debugpublic static final String toString(IoBuffer buf)
buf
- Byte bufferpublic static void main(String[] args)
Copyright © 2006-2012 The Red5 Project