Display filter for missing RTP sequence
I know to look for missing RTP sequence numbers with RTP stream analysis. Is there a display filter or Wireshark expert analysis for RTP sequence analysis?
Thanks
Example capture and screen shot: 5958 - RTP stream analysis shows incorrect number of sequence errors
The flag is set in tap-rtp-analysis.c and displayed by rtp_analysis_dialog.cpp.
There are two Expert Info fields in packet-rtp.c:
{ &ei_rtp_fragment_unfinished, { "rtp.fragment_unfinished", PI_REASSEMBLE, PI_CHAT, "RTP fragment, unfinished", EXPFILL }}, { &ei_rtp_padding_missing, { "rtp.padding_missing", PI_MALFORMED, PI_ERROR, "Frame has padding, but not all the frame data was captured", EXPFILL }},The question is "Does the RTP dissector have enough info to flag missing sequence numbers with an Expert Info?"