We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func (bs *BitStream) GetBit() uint8 { if bs.bytesOffset >= len(bs.bits) { panic("OUT OF RANGE") } ret := bs.bits[bs.bytesOffset] >> (7 - bs.bitsOffset) & 0x01 bs.bitsOffset++ if bs.bitsOffset >= 8 { bs.bytesOffset++ bs.bitsOffset = 0 } return ret }
这里报错,问题mp4文件,可以在https://f.ws28.cn/f/evq0mg0smui 下载
The text was updated successfully, but these errors were encountered:
更新到最新版本 在试下
Sorry, something went wrong.
最新版本可以了,作者,这是更新了哪块内容?
No branches or pull requests
这里报错,问题mp4文件,可以在https://f.ws28.cn/f/evq0mg0smui 下载
The text was updated successfully, but these errors were encountered: