H.264 codec explained [closed]

断了今生、忘了曾经 提交于 2019-12-02 21:04:12

What do you mean by structure? If you are talking about the bitstream syntax, you can download the H.264 standard for free. There are also many books/papers about H.264 such as the one by Iain Richardson.

If you are more interested in the network transport of H.264 over IP, why don't you use the RTP standard and associated payload format?

Here is very basic principles of H.264

If you are writing an application for network cameras, RTP is what you are looking for. And If you are implementing it in C++, there is ffmpeg library would choose.

Have a look at x264 which is an existing implementation of the codec. You might even want to consider using that codec rather than implementing AVC from scratch.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!