All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vacco.libmp3lame.JFrameDataNode Maven / Gradle / Ivy

package io.vacco.libmp3lame;

final class JFrameDataNode {
  JFrameDataNode nxt;
  /** Frame Identifier */
  int fid;
  /** 3-character language descriptor */
  // final byte[] lng = new byte[3];
  String lng;
  //
  // static final class Jptr {
  //	union {
  //	final char   *l;       // ptr to Latin-1 chars
  //	final unsigned short *u; // ptr to UCS-2 text
  //	final unsigned char *b; // ptr to raw bytes
  // byte[] b;
  /** 0:Latin-1, 1:UCS-2, 2:RAW */
  // boolean enc;
  // };
  //	size_t  dim;
  // } dsc, txt;
  // final Jptr dsc = new Jptr();
  // final Jptr txt = new Jptr();
  // String dsc;
  // String txt;
  boolean enc;

  byte[] dsc;
  byte[] txt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy