aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-11-03 15:25:52 +0000
committerMichael Mann <mmann78@netscape.net>2013-11-03 15:25:52 +0000
commit65b6a98b4a18a941a3c56ef3e961cc77fc33b575 (patch)
treec4ea7c673adcfce70b9728855123b495eed52a29 /ui
parent5c93974dab7f663d52fd4f540500bda3f756da06 (diff)
Bluetooth: AVDTP: Add support for Content Protection type SCMS-T (and some minor cleanup). Bug 7893 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7893)
From Michal Labedzki svn path=/trunk/; revision=53065
Diffstat (limited to 'ui')
-rw-r--r--ui/rtp_stream.h2
-rw-r--r--ui/tap-rtp-common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/rtp_stream.h b/ui/rtp_stream.h
index 059444b96d..14c484bbd9 100644
--- a/ui/rtp_stream.h
+++ b/ui/rtp_stream.h
@@ -58,7 +58,7 @@ typedef struct _rtp_stream_info {
guint32 dest_port;
guint32 ssrc;
guint8 pt;
- gchar *info_payload_type_str;
+ const gchar *info_payload_type_str;
guint32 npackets;
guint32 first_frame_num; /**< frame number of first frame */
diff --git a/ui/tap-rtp-common.c b/ui/tap-rtp-common.c
index 6785e5fd1d..9f9c070f6c 100644
--- a/ui/tap-rtp-common.c
+++ b/ui/tap-rtp-common.c
@@ -417,7 +417,7 @@ static const mimetype_and_clock mimetype_and_clock_map[] = {
#define NUM_DYN_CLOCK_VALUES (sizeof mimetype_and_clock_map / sizeof mimetype_and_clock_map[0])
static guint32
-get_dyn_pt_clock_rate(gchar *payload_type_str)
+get_dyn_pt_clock_rate(const gchar *payload_type_str)
{
int i;