本文整理了Java中javazoom.jl.decoder.Header.read_header()
方法的一些代码示例,展示了Header.read_header()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Header.read_header()
方法的具体详情如下:
包路径:javazoom.jl.decoder.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);
}
内容来源于网络,如有侵权,请联系作者删除!