3 * Routines for RFC 2250 MPEG2 (ISO/IEC 13818-1) Transport Stream dissection
5 * Copyright 2006, Erwin Rol <erwin@erwinrol.com>
6 * Copyright 2012-2014, Guy Martin <gmsoft@tuxicoman.be>
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
15 #ifndef __PACKET_MP2T_H__
16 #define __PACKET_MP2T_H__
18 /* The MPEG2 TS packet size */
19 #define MP2T_PACKET_SIZE 188
20 #define MP2T_SYNC_BYTE 0x47
23 mp2t_add_stream_type(packet_info
*pinfo
, uint32_t pid
, uint32_t stream_type
);
25 #endif /* __PACKET_MP2T_H__ */