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
{
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
;
43 * Editor modelines - https://www.wireshark.org/tools/modelines.html
48 * indent-tabs-mode: nil
51 * vi: set shiftwidth=4 tabstop=8 expandtab:
52 * :indentSize=4:tabSize=8:noTabs=true: