H264 RTP packet parsing [closed]

2020-06-27 05:12发布

I am looking for source code of RTP Payload Format for H.264 Video according to RFC(3984). It would be great if someone can point out it.

Also I am looking for wireshark plugin which can show me the packet decoding of h264.

Thank you guys in advance.

标签: video rtp h.264
2条回答
Viruses.
2楼-- · 2020-06-27 06:08

More up-to date answer: look at project moonlight on github. Moonlight is a NVidia real time streaming client, it has many useful network APIs, much easier to digest than ffpmeg. For your specific problem: processing RTP payload

查看更多
我命由我不由天
3楼-- · 2020-06-27 06:11

You can start with FFMpeg's source code (under LGPL); the rtp_h264.c contains the code that parse H.264 RTP frame. You should have a solid knowledge of the RFC 3984 to follow the code...

查看更多
登录 后发表回答