summaryrefslogtreecommitdiff
path: root/ui/voip_calls.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-12-16 14:36:04 -0800
committerGerald Combs <gerald@wireshark.org>2014-12-20 16:49:05 +0000
commit2bb8255e29e26c7c14f7a83ce33b41f9af18501e (patch)
tree9dbed760864c5780d48f2dd6c57a6bf28e613b74 /ui/voip_calls.h
parent79b5bb418bc3834a842c86371eac47cb39706426 (diff)
downloadwireshark-2bb8255e29e26c7c14f7a83ce33b41f9af18501e.tar.gz
Consolidate RTP stream structs.
Consolidate the three different RTP stream structs in ui/rtp_stream.h, ui/gtk/rtp_player.c, and ui/voip_calls.c into one. Make the member names a bit more consistent. Document what each GList contains. Use nstime_t for timestamps since that's what we get from the frame data. Use g_new0 to initialize our structs. Change-Id: I2b3f8f2051394a6a98a5c7bc49c117f07161d031 Reviewed-on: https://code.wireshark.org/review/5843 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/voip_calls.h')
-rw-r--r--ui/voip_calls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/voip_calls.h b/ui/voip_calls.h
index fc6cdb5904..91308e6ab5 100644
--- a/ui/voip_calls.h
+++ b/ui/voip_calls.h
@@ -199,7 +199,7 @@ typedef struct _voip_calls_tapinfo {
seq_analysis_info_t* graph_analysis;
epan_t *session; /**< epan session */
int nrtp_streams; /**< number of rtp streams */
- GList* rtp_stream_list; /**< list with the rtp streams */
+ GList* rtp_stream_list; /**< list of rtp_stream_info_t */
guint32 rtp_evt_frame_num;
guint8 rtp_evt;
gboolean rtp_evt_end;