aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btavdtp.h
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 /epan/dissectors/packet-btavdtp.h
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 'epan/dissectors/packet-btavdtp.h')
-rw-r--r--epan/dissectors/packet-btavdtp.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btavdtp.h b/epan/dissectors/packet-btavdtp.h
index c847571332..0fa9cb4e26 100644
--- a/epan/dissectors/packet-btavdtp.h
+++ b/epan/dissectors/packet-btavdtp.h
@@ -27,9 +27,17 @@
#ifndef __PACKET_BTAVDTP_H__
#define __PACKET_BTAVDTP_H__
-typedef struct _btavdtp_data_t {
+#define BTAVDTP_CONTENT_PROTECTION_TYPE_SCMS_T 0x02
+
+typedef struct _bta2dp_codec_info_t {
+ dissector_handle_t codec_dissector;
+ gint content_protection_type;
+} bta2dp_codec_info_t;
+
+typedef struct _btvdp_codec_info_t {
dissector_handle_t codec_dissector;
-} btavdtp_data_t;
+ gint content_protection_type;
+} btvdp_codec_info_t;
#endif