aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/rtp_analysis_dialog.cpp
diff options
context:
space:
mode:
authorJirka Novak <j.novak@netsystem.cz>2021-03-09 14:47:07 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-03-10 15:45:12 +0000
commit649eab2dfe9134882d616b744a111102ef658113 (patch)
tree9b98cd19862e5b01c66c8a1ce2f78be89ff4cd77 /ui/qt/rtp_analysis_dialog.cpp
parentdcd3e26a818f2a06fbac42dab0af876db47e151e (diff)
RTP player: It is possible to select SETUP packet related to RTP stream
When SETUP (or related signalling packet) exists, it is selected by Shift+G. If RTP stream is "alone", first RTP packet of the stream is selected.
Diffstat (limited to 'ui/qt/rtp_analysis_dialog.cpp')
-rw-r--r--ui/qt/rtp_analysis_dialog.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt/rtp_analysis_dialog.cpp b/ui/qt/rtp_analysis_dialog.cpp
index 148518a7d9..5fc552df33 100644
--- a/ui/qt/rtp_analysis_dialog.cpp
+++ b/ui/qt/rtp_analysis_dialog.cpp
@@ -971,6 +971,7 @@ void RtpAnalysisDialog::showPlayer()
rtpstream_id_copy(&fwd_statinfo_.id, &stream_info.id);
stream_info.packet_count = fwd_statinfo_.packet_count;
stream_info.setup_frame_number = fwd_statinfo_.setup_frame_number;
+ stream_info.rtp_stats = fwd_statinfo_.rtp_stats;
nstime_copy(&stream_info.start_rel_time, &fwd_statinfo_.start_rel_time);
nstime_copy(&stream_info.stop_rel_time, &fwd_statinfo_.stop_rel_time);
nstime_copy(&stream_info.start_abs_time, &fwd_statinfo_.start_abs_time);
@@ -981,6 +982,7 @@ void RtpAnalysisDialog::showPlayer()
rtpstream_id_copy(&rev_statinfo_.id, &stream_info.id);
stream_info.packet_count = rev_statinfo_.packet_count;
stream_info.setup_frame_number = rev_statinfo_.setup_frame_number;
+ stream_info.rtp_stats = rev_statinfo_.rtp_stats;
nstime_copy(&stream_info.start_rel_time, &rev_statinfo_.start_rel_time);
nstime_copy(&stream_info.stop_rel_time, &rev_statinfo_.stop_rel_time);
nstime_copy(&stream_info.start_abs_time, &rev_statinfo_.start_abs_time);