innocodes
innocodes

Reputation: 163

Decoding RTP payload as H264 using wireshark

I am streaming a RTSP video from vlc on windows to ipad app. And I capture packets in wireshark. I can see RTP packets in wireshark and also the RTP header fields like payload type, timestamp, sequence number. My question is, is it possible to decode the RTP payload as H264 NAL units. Currently I can only see the bytes in payload.

Upvotes: 15

Views: 29270

Answers (1)

Len Holgate
Len Holgate

Reputation: 21616

You need to configure Wireshark to understand that the RTP dynamic payload type maps to H264.

To do this, use the menu; Edit->Preferences->Protocols->H264

Set H264 dynamic payload types to the value shown in the RTP decode for the payload type.

Upvotes: 32

Related Questions