aboutsummaryrefslogtreecommitdiffstats
path: root/ui/rtp_media.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-10-20 08:31:52 -0700
committerGerald Combs <gerald@wireshark.org>2015-10-21 17:52:15 +0000
commit8682eb49ef9e865be114ac57525628527bad1bd6 (patch)
treeca29ce58ee792b2b0b01b32ed8d858c9c58624e2 /ui/rtp_media.h
parented27dad41eb2085fa2afb51c6a66a89bd1c64ad4 (diff)
Split RTP player tapping, decoding, and plotting.
In RtpAudioStream split tapping+decoding into separate member functions. Store RTP payloads in memory. In RtpPlayerDialog split tapping+plotting. This more closely resembles what we're doing in the GTK+ UI and paves the way for jitter support and other changes. Change-Id: I244c225cec8930545622e6582b7be35ebe45b237 Reviewed-on: https://code.wireshark.org/review/11195 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/rtp_media.h')
-rw-r--r--ui/rtp_media.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/rtp_media.h b/ui/rtp_media.h
index a5d293cebe..5432091805 100644
--- a/ui/rtp_media.h
+++ b/ui/rtp_media.h
@@ -48,6 +48,7 @@ typedef gint16 SAMPLE;
/* Defines an RTP packet */
typedef struct _rtp_packet {
+ guint32 frame_num; /* Qt only */
struct _rtp_info *info; /* the RTP dissected info */
double arrive_offset; /* arrive offset time since the beginning of the stream in ms */
guint8* payload_data;