Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-h263.h
1 /* packet-h263.h
2  *
3  * Common variables for H.263 dissectors
4  *
5  * Copyright 2003 Niklas Ogren <niklas.ogren@7l.se>
6  * Seven Levels Consultants AB
7  *
8  * Copyright 2008 Richard van der Hoff, MX Telecom
9  * <richardv@mxtelecom.com>
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * Copied structure from packet-h261.c
16  *
17  * SPDX-License-Identifier: GPL-2.0-or-later
18  */
19 
20 #ifndef __PACKET_H263_H__
21 #define __PACKET_H263_H__
22 
23 /* Source format types */
24 #define H263_SRCFORMAT_FORB 0 /* forbidden */
25 #define H263_SRCFORMAT_SQCIF 1
26 #define H263_SRCFORMAT_QCIF 2
27 #define H263_SRCFORMAT_CIF 3
28 #define H263_SRCFORMAT_4CIF 4
29 #define H263_SRCFORMAT_16CIF 5
30 #define H263_PLUSPTYPE 7
31 
32 extern const value_string h263_srcformat_vals[];
33 
34 /* XXX: these ought to be reworked to use the normal call_dissector interface. */
35 int dissect_h263_picture_layer( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset, gint length, gboolean is_rfc4626);
36 int dissect_h263_group_of_blocks_layer( tvbuff_t *tvb, proto_tree *tree, gint offset, gboolean is_rfc4626);
37 
38 
39 #endif
40 
Definition: packet_info.h:44
Definition: proto.h:904
Definition: value_string.h:26
Definition: tvbuff-int.h:35