javazoom.jl.decoder.Header.read_header()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(173)

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

Header.read_header介绍

[英]Read a 32-bit header from the bitstream.
[中]从位流中读取32位标头。

代码示例

代码示例来源:origin: javazoom/jlayer

/**
 * Read next MP3 frame.
 * @throws BitstreamException
 */
private void nextFrame() throws BitstreamException
{
  // entire frame is read by the header class.
  header.read_header(this, crc);
}

代码示例来源:origin: com.badlogicgames.jlayer/jlayer

/**
 * Read next MP3 frame.
 * @throws BitstreamException
 */
private void nextFrame () throws BitstreamException {
  // entire frame is read by the header class.
  header.read_header(this, crc);
}

代码示例来源:origin: pdudits/soundlibs

/**
 * Read next MP3 frame.
 * @throws BitstreamException
 */
private void nextFrame() throws BitstreamException
{
  // entire frame is read by the header class.
  header.read_header(this, crc);
}

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

/**
 * Read next MP3 frame.
 * @throws BitstreamException
 */
private void nextFrame() throws BitstreamException
{
  // entire frame is read by the header class.
  header.read_header(this, crc);
}

相关文章