Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-btavdtp.h
1 /* packet-btavdtp.h
2  * Headers for AVDTP
3  *
4  * Copyright 2012, Michal Labedzki for Tieto Corporation
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef __PACKET_BTAVDTP_H__
14 #define __PACKET_BTAVDTP_H__
15 
16 #define BTAVDTP_CONTENT_PROTECTION_TYPE_SCMS_T 0x02
17 
18 typedef struct _media_packet_info_t {
19  nstime_t abs_ts;
20  nstime_t first_abs_ts;
21  gdouble cumulative_frame_duration;
22  gdouble avrcp_song_position;
23  guint32 stream_number;
25 
26 typedef struct _bta2dp_codec_info_t {
27  dissector_handle_t codec_dissector;
28  guint8 configuration_length;
29  guint8 *configuration;
30  gint content_protection_type;
31  media_packet_info_t *previous_media_packet_info;
32  media_packet_info_t *current_media_packet_info;
34 
35 typedef struct _btvdp_codec_info_t {
36  dissector_handle_t codec_dissector;
37  gint content_protection_type;
39 
40 #endif
41 
42 /*
43  * Editor modelines - https://www.wireshark.org/tools/modelines.html
44  *
45  * Local variables:
46  * c-basic-offset: 4
47  * tab-width: 8
48  * indent-tabs-mode: nil
49  * End:
50  *
51  * vi: set shiftwidth=4 tabstop=8 expandtab:
52  * :indentSize=4:tabSize=8:noTabs=true:
53  */
Definition: packet-btavdtp.h:26
Definition: packet-btavdtp.h:35
Definition: packet-btavdtp.h:18
Definition: packet.c:763
Definition: nstime.h:26