aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorJiri Novak <j.novak@netsystem.cz>2018-06-20 14:06:37 +0200
committerAnders Broman <a.broman58@gmail.com>2018-06-20 13:19:46 +0000
commitc06bfeae0a04bdfafbf95e3e16af5631e64c35f1 (patch)
tree58675676ab6c6597f0b3824a44e40cc06102dace /ui
parentf99c1c4513ab3ab09bb76df90b28e9dc6b5e13df (diff)
RTP: Code cleanup 2
Removed unused items. Change-Id: Ic83d7bfae12424f11e3fc2a9a678c28a0ff6b72e Reviewed-on: https://code.wireshark.org/review/28345 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/rtp_player_dialog.cpp3
-rw-r--r--ui/tap-rtp-analysis.h13
2 files changed, 1 insertions, 15 deletions
diff --git a/ui/qt/rtp_player_dialog.cpp b/ui/qt/rtp_player_dialog.cpp
index 513b1bf372..2f1d9a37ce 100644
--- a/ui/qt/rtp_player_dialog.cpp
+++ b/ui/qt/rtp_player_dialog.cpp
@@ -405,10 +405,9 @@ void RtpPlayerDialog::addRtpStream(rtpstream_info_t *rtp_stream)
} else {
start_rel_time_ = qMin(start_rel_time_, start_rel_time);
}
- RTP_STREAM_DEBUG("adding stream %d to layout, %u packets, %u in list, start %u",
+ RTP_STREAM_DEBUG("adding stream %d to layout, %u packets, start %u",
ui->streamTreeWidget->topLevelItemCount(),
rtp_stream->packet_count,
- g_list_length(rtp_stream->rtp_packet_list),
rtp_stream->start_fd ? rtp_stream->start_fd->num : 0);
}
diff --git a/ui/tap-rtp-analysis.h b/ui/tap-rtp-analysis.h
index 3e31284ce1..92a5adf9c1 100644
--- a/ui/tap-rtp-analysis.h
+++ b/ui/tap-rtp-analysis.h
@@ -30,19 +30,6 @@
extern "C" {
#endif /* __cplusplus */
-void rtp_analysis(
- address *ip_src_fwd,
- guint32 port_src_fwd,
- address *ip_dst_fwd,
- guint32 port_dst_fwd,
- guint32 ssrc_fwd,
- address *ip_src_rev,
- guint32 port_src_rev,
- address *ip_dst_rev,
- guint32 port_dst_rev,
- guint32 ssrc_rev
- );
-
/****************************************************************************/
/* structure that holds the information about the forward and reversed direction */
typedef struct _bw_history_item {