有谁有一个简单的解决方案来使用 C++ 解析 Exp-Golomb 代码?
尝试解码 H.264 视频流的 SDP sprop-parameter-sets 值,并发现访问某些值将涉及解析 Exp-Golomb 编码数据,我的方法包含 base64 解码的 sprop-parameter-sets 数据一个字节数组,我现在有点步行,但已经到达 Exp-Golomb 编码数据的第一部分,并寻找合适的代码提取来解析这些值。
Trying to decode the SDP sprop-parameter-sets values for an H.264 video stream and have found to access some of the values will involve parsing of Exp-Golomb encoded data and my method contains the base64 decoded sprop-parameter-sets data in a byte array which I now bit walking but have come up to the first part of Exp-Golomb encoded data and looking for a suitable code extract to parse these values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Exp.-Golomb 代码的顺序是什么?
如果您需要解析 H.264 位流(我的意思是传输层),您可以编写一个简单的函数来访问无限位流中的指定位。位索引从左到右。
该函数实现零范围指数哥伦布码(H.264 中使用)的解码。
}
u_dword 表示无符号 4 字节整数。
u_byte 表示无符号 1 字节整数。
请注意,每个 NAL 单元的第一个字节是具有禁止位、NAL 引用和 NAL 类型的指定结构。
Exp.-Golomb codes of what order ??
If it you need to parse H.264 bit stream (I mean transport layer) you can write a simple functions to make an access to scecified bits in the endless bit stream. Bits indexing from left to right.
This function implement decoding of exp-Golomb codes of zero range (used in H.264).
}
u_dword means unsigned 4 bytes integer.
u_byte means unsigned 1 byte integer.
Note that first byte of each NAL Unit is a specified structure with forbidden bit, NAL reference, and NAL type.
接受的答案不是正确的实现。它给出了错误的输出。根据伪代码正确实现
Accepted answer is not a correct implementation. It is giving wrong output. Correct implementation as per pseudo code from
我编写了一个使用 golomb 代码的 c++ jpeg-ls 压缩库。我不知道Exp-Golomb码是否完全相同。该库是开源的,可以在 http://charls.codeplex.com 找到。我使用查找表来解码长度 <= 8 位的哥伦布码。如果您在寻找出路时遇到问题,请告诉我。
I wrote a c++ jpeg-ls compression library that uses golomb codes. I don't know if Exp-Golomb codes is exactly the same. The library is open source can be found at http://charls.codeplex.com. I use a lookup table to decode golomb codes <= 8 bits in length. Let me know if you have problems finding your way around.
修改为从流中获取 N 位的函数;解析 H.264 NAL 的工作
Revised with a function to get N bits from the stream; works parsing H.264 NALs