2 * Routines for H.264 dissection
3 * Copyright 2007, Anders Broman <anders.broman[at]ericsson.com>
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 * http://www.ietf.org/rfc/rfc3984.txt?number=3984
14 #ifndef __PACKET_H264_H__
15 #define __PACKET_H264_H__
17 void dissect_h264_profile(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
);
18 void dissect_h264_nal_unit(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
);
20 #endif /* __PACKET_H264_H__ */