com.jcraft.jorbis.Block.clear()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中com.jcraft.jorbis.Block.clear()方法的一些代码示例,展示了Block.clear()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.clear()方法的具体详情如下:
包路径:com.jcraft.jorbis.Block
类名称:Block
方法名:clear

Block.clear介绍

暂无

代码示例

代码示例来源:origin: libgdx/libgdx

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: libgdx/libgdx

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: libgdx/libgdx

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: libgdx/libgdx

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: org.jcraft/jorbis

void decode_clear(){
 os.clear();
 vd.clear();
 vb.clear();
 decode_ready=false;
 bittrack=0.f;
 samptrack=0.f;
}

代码示例来源:origin: com.googlecode.soundlibs/jorbis

void decode_clear(){
 os.clear();
 vd.clear();
 vb.clear();
 decode_ready=false;
 bittrack=0.f;
 samptrack=0.f;
}

代码示例来源:origin: com.github.nifty-gui/nifty-pauls-soundsystem

void decode_clear(){
 os.clear();
 vd.clear();
 vb.clear();
 decode_ready=false;
 bittrack=0.f;
 samptrack=0.f;
}

代码示例来源:origin: tulskiy/musique

void decode_clear() {
  os.clear();
  vd.clear();
  vb.clear();
  decode_ready = false;
  bittrack = 0.f;
  samptrack = 0.f;
}

代码示例来源:origin: radzio/AndroidOggStreamPlayer

void decode_clear(){
 os.clear();
 vd.clear();
 vb.clear();
 decode_ready=false;
 bittrack=0.f;
 samptrack=0.f;
}

代码示例来源:origin: com.github.nifty-gui/nifty-pauls-soundsystem

/**
 * Closes the input stream and remove references to all instantiated objects.
 */
  public void cleanup()
  {
    joggStreamState.clear();
    jorbisBlock.clear();
    jorbisDspState.clear();
    jorbisInfo.clear();
    joggSyncState.clear();

    if( inputStream != null )
    {
      try
      {
        inputStream.close();
      }
      catch( IOException ioe )
      {}
    }

    joggStreamState = null;
    jorbisBlock = null;
    jorbisDspState = null;
    jorbisInfo = null;
    joggSyncState = null;
    inputStream = null;
  }

代码示例来源:origin: libetl/soundtransform

/**
 * A clean-up method, called when everything is finished. Clears the
 * JOgg/JOrbis objects and closes the <code>oggInputStream</code>.
 */
private void cleanUp (final ConverterData converterData, final InputStream oggInputStream) {
  // Clear the necessary JOgg/JOrbis objects.
  converterData.joggData.streamState.clear ();
  converterData.jorbisData.block.clear ();
  converterData.jorbisData.dspState.clear ();
  converterData.jorbisData.info.clear ();
  converterData.joggData.syncState.clear ();
  // Closes the stream.
  try {
    if (oggInputStream != null) {
      oggInputStream.close ();
    }
  } catch (final IOException e) {
    this.log (new LogEvent (AudioFileHelperEventCode.COULD_NOT_CLOSE, e));
  }
}

代码示例来源:origin: com.googlecode.soundlibs/jorbis

int clear(){
 vb.clear();
 vd.clear();
 os.clear();
 if(vi!=null&&links!=0){
  for(int i=0; i<links; i++){
   vi[i].clear();
   vc[i].clear();
  }
  vi=null;
  vc=null;
 }
 if(dataoffsets!=null)
  dataoffsets=null;
 if(pcmlengths!=null)
  pcmlengths=null;
 if(serialnos!=null)
  serialnos=null;
 if(offsets!=null)
  offsets=null;
 oy.clear();
 return (0);
}

代码示例来源:origin: org.jcraft/jorbis

int clear(){
 vb.clear();
 vd.clear();
 os.clear();
 if(vi!=null&&links!=0){
  for(int i=0; i<links; i++){
   vi[i].clear();
   vc[i].clear();
  }
  vi=null;
  vc=null;
 }
 if(dataoffsets!=null)
  dataoffsets=null;
 if(pcmlengths!=null)
  pcmlengths=null;
 if(serialnos!=null)
  serialnos=null;
 if(offsets!=null)
  offsets=null;
 oy.clear();
 return (0);
}

代码示例来源:origin: com.github.nifty-gui/nifty-pauls-soundsystem

int clear(){
 vb.clear();
 vd.clear();
 os.clear();
 if(vi!=null&&links!=0){
  for(int i=0; i<links; i++){
   vi[i].clear();
   vc[i].clear();
  }
  vi=null;
  vc=null;
 }
 if(dataoffsets!=null)
  dataoffsets=null;
 if(pcmlengths!=null)
  pcmlengths=null;
 if(serialnos!=null)
  serialnos=null;
 if(offsets!=null)
  offsets=null;
 oy.clear();
 return (0);
}

代码示例来源:origin: tulskiy/musique

int clear() {
  vb.clear();
  vd.clear();
  os.clear();
  if (vi != null && links != 0) {
    for (int i = 0; i < links; i++) {
      vi[i].clear();
      vc[i].clear();
    }
    vi = null;
    vc = null;
  }
  if (dataoffsets != null)
    dataoffsets = null;
  if (pcmlengths != null)
    pcmlengths = null;
  if (serialnos != null)
    serialnos = null;
  if (offsets != null)
    offsets = null;
  oy.clear();
  return (0);
}

代码示例来源:origin: radzio/AndroidOggStreamPlayer

int clear(){
 vb.clear();
 vd.clear();
 os.clear();
 if(vi!=null&&links!=0){
  for(int i=0; i<links; i++){
   vi[i].clear();
   vc[i].clear();
  }
  vi=null;
  vc=null;
 }
 if(dataoffsets!=null)
  dataoffsets=null;
 if(pcmlengths!=null)
  pcmlengths=null;
 if(serialnos!=null)
  serialnos=null;
 if(offsets!=null)
  offsets=null;
 oy.clear();
 return (0);
}

代码示例来源:origin: radzio/AndroidOggStreamPlayer

jorbisBlock.clear();
jorbisDspState.clear();
jorbisInfo.clear();

代码示例来源:origin: com.github.nifty-gui/nifty-openal-soundsystem

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: org.slick2d/slick2d-core

vorbisBlock.clear();
dspState.clear();

代码示例来源:origin: com.badlogicgames.gdx/gdx-backend-lwjgl

vorbisBlock.clear();
dspState.clear();

相关文章

微信公众号

最新文章

更多