Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-btavdtp.h
blob52ef205163d625fc393ddcc2ff6c2112dd81d3ff
1 /* packet-btavdtp.h
2 * Headers for AVDTP
4 * Copyright 2012, Michal Labedzki for Tieto Corporation
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __PACKET_BTAVDTP_H__
14 #define __PACKET_BTAVDTP_H__
16 #define BTAVDTP_CONTENT_PROTECTION_TYPE_SCMS_T 0x02
18 typedef struct _media_packet_info_t {
19 nstime_t abs_ts;
20 nstime_t first_abs_ts;
21 double cumulative_frame_duration;
22 double avrcp_song_position;
23 uint32_t stream_number;
24 } media_packet_info_t;
26 typedef struct _bta2dp_codec_info_t {
27 dissector_handle_t codec_dissector;
28 uint8_t configuration_length;
29 uint8_t *configuration;
30 int content_protection_type;
31 media_packet_info_t *previous_media_packet_info;
32 media_packet_info_t *current_media_packet_info;
33 } bta2dp_codec_info_t;
35 typedef struct _btvdp_codec_info_t {
36 dissector_handle_t codec_dissector;
37 int content_protection_type;
38 } btvdp_codec_info_t;
40 #endif
43 * Editor modelines - https://www.wireshark.org/tools/modelines.html
45 * Local variables:
46 * c-basic-offset: 4
47 * tab-width: 8
48 * indent-tabs-mode: nil
49 * End:
51 * vi: set shiftwidth=4 tabstop=8 expandtab:
52 * :indentSize=4:tabSize=8:noTabs=true: