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

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

The newest version!
package io.vacco.libmp3lame;

final class JVBR_seek_info {
  /** what we have seen so far */
  int sum;
  /** how many frames we have seen in this chunk */
  int seen;
  /** how many frames we want to collect into one chunk */
  int want;
  /** actual position in our bag */
  int pos;
  /** size of our bag */
  // int     size;
  /** pointer to our bag */
  int[] bag; // java: size = bag.length

  int nVbrNumFrames; // uint32?
  int nBytesWritten; // uint32?
  /** VBR tag data */
  int TotalFrameSize; // uint32?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy