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

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

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

Block.init介绍

暂无

代码示例

代码示例来源:origin: MovingBlocks/Terasology

block.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

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

private int make_decode_ready(){
 if(decode_ready)
  System.exit(1);
 vd.synthesis_init(vi[0]);
 vb.init(vd);
 decode_ready=true;
 return (0);
}

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

private int make_decode_ready(){
 if(decode_ready)
  System.exit(1);
 vd.synthesis_init(vi[0]);
 vb.init(vd);
 decode_ready=true;
 return (0);
}

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

private int make_decode_ready(){
 if(decode_ready)
  System.exit(1);
 vd.synthesis_init(vi[0]);
 vb.init(vd);
 decode_ready=true;
 return (0);
}

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

private int make_decode_ready() {
  if (decode_ready)
    System.exit(1);
  vd.synthesis_init(vi[0]);
  vb.init(vd);
  decode_ready = true;
  return (0);
}

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

private int make_decode_ready(){
 if(decode_ready)
  System.exit(1);
 vd.synthesis_init(vi[0]);
 vb.init(vd);
 decode_ready=true;
 return (0);
}

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

/**
 * This method starts the sound system. It starts with initializing the
 * <code>DspState</code> object, after which it sets up the
 * <code>Block</code> object. Last but not least, it opens a line to the
 * source data line.
 *
 */
private void initializeSound (final ConverterData converterData) {
  // This buffer is used by the decoding method.
  converterData.pcmData.convertedBufferSize = JorbisCleanConverter.BUFFER_SIZE * JorbisCleanConverter.SAMPLE_SIZE;
  converterData.pcmData.convertedBuffer = new byte [converterData.pcmData.convertedBufferSize];
  // Initializes the DSP synthesis.
  converterData.jorbisData.dspState.synthesis_init (converterData.jorbisData.info);
  // Make the Block object aware of the DSP.
  converterData.jorbisData.block.init (converterData.jorbisData.dspState);
  converterData.pcmData.baos = new ByteArrayOutputStream ();
  /*
   * We create the PCM variables. The index is an array with the same
   * length as the number of audio channels.
   */
  converterData.pcmData.pcmInfo = new float [1] [] [];
  converterData.pcmData.pcmIndex = new int [converterData.jorbisData.info.channels];
}

代码示例来源:origin: com.github.bloodshura/shurax-assets-ext

vorbisBlock.init(dspState);

代码示例来源:origin: com.threerings/nenya

_block.init(_dsp);
_offsets = new int[_info.channels];

代码示例来源:origin: threerings/nenya

_block.init(_dsp);
_offsets = new int[_info.channels];

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

vorbisBlock.init(vorbisDspState);
_pcmf = new float[1][][];
_index = new int[vorbisInfo.channels];

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

jorbisBlock.init(jorbisDspState);

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

jorbisBlock.init( jorbisDspState );

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

vorbisBlock.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

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

vorbisBlock.init(dspState); // local state for most of the decode

相关文章

微信公众号

最新文章

更多