H264 解析 seq_parameter_set_data :DefaultScalingMatrix4x4Flag、DefaultScalingMatrix8x8Flag
我尝试从 RBSP 数据解析 H265 seq_parameter_data...我使用 http://www-ee.uta.edu/Dip/Courses/EE5359/H.264%20Standard2007.pdf。
第40页展示了如何解析。
但是伪算法使用了ScalingList4x4[ ]、ScalingMatrix4x4Flag[ ]等数据结构......它们是什么?它们是常量表还是我们填充它们?有人对此有了解吗?
I try to parse H265 seq_parameter_data from an RBSP data... I use the reference from http://www-ee.uta.edu/Dip/Courses/EE5359/H.264%20Standard2007.pdf .
It shows how to parse at page 40.
But the pseudo-algorithms use data structures such as ScalingList4x4[ ], ScalingMatrix4x4Flag[ ] etc... What are they? Are they constant tables or we fill them? Anybody has knowlegde about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试解析参数集(我从您之前的问题中假设这一点),则不需要这些结构。您只需跳过一定数量的位即可完全跳过表格并继续查看您感兴趣的值。
If you are trying to parse parameter sets (I assume this from your previous questions), you don't need these structures. You just need to skip certain amount of bits in order to skip the tables in full and move on to the values of your interest.