JPEG 中的霍夫曼编码
这是我的 JPEG 图片十六进制内容(我在图片上标记了 FFC4 标记)。正如你所看到的,在字节0x01之后有值0xA2!这怎么可能,因为标准说 0x10 之后的接下来的 16 个字节告诉我们每个长度有多少个代码? 1 位不可能有这么多的代码。我错了吗?
This is my JPEG picture hex content (I marked FFC4 marker on picture). As you can see, after the byte 0x01 there is value 0xA2! How that can be possible, because the standard says that the next 16 bytes after the 0x10 tell us how many codes of each length? It is impossible to have that number of codes with 1 bit. Am I wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看到的是霍夫曼块的长度(按大端顺序),以字节为单位(减去 2 以包括长度字段的长度)。
huffman 块的长度为 0x1a2 字节。
长度后面有一个字节表示霍夫曼表信息(表号以及该表是否用于 AC 或 DC 系数)
开始读取信息值后的长度代码:
What you are seeing is the length of the huffman block (in big endian order) in bytes (subtract 2 to include length of length field).
The huffman block is 0x1a2 bytes long.
Following the length there is a single byte representing the huffman table information (table number and also whether or not the table is for AC or DC coefficients)
Start reading the length codes after the information value: