Package org.mp4parser.tools
Class IsoTypeWriter
- java.lang.Object
-
- org.mp4parser.tools.IsoTypeWriter
-
public final class IsoTypeWriter extends Object
-
-
Constructor Summary
Constructors Constructor Description IsoTypeWriter()
-
Method Summary
Modifier and Type Method Description static voidwriteFixedPoint0230(ByteBuffer bb, double v)static voidwriteFixedPoint1616(ByteBuffer bb, double v)static voidwriteFixedPoint88(ByteBuffer bb, double v)static voidwriteIso639(ByteBuffer bb, String language)static voidwritePascalUtfString(ByteBuffer bb, String string)static voidwriteUInt16(ByteBuffer bb, int i)static voidwriteUInt16BE(ByteBuffer bb, int i)static voidwriteUInt24(ByteBuffer bb, int i)static voidwriteUInt32(ByteBuffer bb, long u)static voidwriteUInt32BE(ByteBuffer bb, long u)static voidwriteUInt48(ByteBuffer bb, long l)static voidwriteUInt64(ByteBuffer bb, long u)static voidwriteUInt8(ByteBuffer bb, int i)static voidwriteUtf8String(ByteBuffer bb, String string)static voidwriteZeroTermUtf8String(ByteBuffer bb, String string)
-
-
-
Method Detail
-
writeUInt64
public static void writeUInt64(ByteBuffer bb, long u)
-
writeUInt32
public static void writeUInt32(ByteBuffer bb, long u)
-
writeUInt32BE
public static void writeUInt32BE(ByteBuffer bb, long u)
-
writeUInt24
public static void writeUInt24(ByteBuffer bb, int i)
-
writeUInt48
public static void writeUInt48(ByteBuffer bb, long l)
-
writeUInt16
public static void writeUInt16(ByteBuffer bb, int i)
-
writeUInt16BE
public static void writeUInt16BE(ByteBuffer bb, int i)
-
writeUInt8
public static void writeUInt8(ByteBuffer bb, int i)
-
writeFixedPoint1616
public static void writeFixedPoint1616(ByteBuffer bb, double v)
-
writeFixedPoint0230
public static void writeFixedPoint0230(ByteBuffer bb, double v)
-
writeFixedPoint88
public static void writeFixedPoint88(ByteBuffer bb, double v)
-
writeIso639
public static void writeIso639(ByteBuffer bb, String language)
-
writePascalUtfString
public static void writePascalUtfString(ByteBuffer bb, String string)
-
writeZeroTermUtf8String
public static void writeZeroTermUtf8String(ByteBuffer bb, String string)
-
writeUtf8String
public static void writeUtf8String(ByteBuffer bb, String string)
-
-