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

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

The newest version!
package io.vacco.libmp3lame;

/** simple statistics */
final class JEncResult {
  final int bitrate_channelmode_hist[][] = new int[16][4 + 1];
  /** norm/start/short/stop/mixed(short)/sum */
  final int bitrate_blocktype_hist[][] = new int[16][4 + 1 + 1];

  int bitrate_index;
  /** number of frames encoded */
  int frame_number;
  /** padding for the current frame? */
  boolean padding;

  int mode_ext;
  int encoder_delay;
  /** number of samples of padding appended to input */
  int encoder_padding;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy