aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.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 /epan/dissectors/packet-rtp.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 'epan/dissectors/packet-rtp.h')
-rw-r--r--epan/dissectors/packet-rtp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rtp.h b/epan/dissectors/packet-rtp.h
index d4f381b15b..23aba7cf4d 100644
--- a/epan/dissectors/packet-rtp.h
+++ b/epan/dissectors/packet-rtp.h
@@ -42,8 +42,8 @@ struct _rtp_info {
guint32 info_sync_src;
guint info_data_len; /* length of raw rtp data as reported */
gboolean info_all_data_present; /* FALSE if data is cut off */
- size_t info_payload_offset; /* start of payload relative to info_data */
- size_t info_payload_len; /* length of payload (incl padding) */
+ size_t info_payload_offset; /* start of payload relative to info_data */
+ size_t info_payload_len; /* length of payload (incl padding) */
gboolean info_is_srtp;
guint32 info_setup_frame_num; /* the frame num of the packet that set this RTP connection */
const guint8* info_data; /* pointer to raw rtp data */