Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-h263.h
1/* packet-h263.h
2 *
3 * Common variables for H.263 dissectors
4 *
5 * Copyright 2003 Niklas Ogren <[email protected]>
6 * Seven Levels Consultants AB
7 *
8 * Copyright 2008 Richard van der Hoff, MX Telecom
10 *
11 * Wireshark - Network traffic analyzer
12 * By Gerald Combs <[email protected]>
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
32extern const value_string h263_srcformat_vals[];
33
34/* XXX: these ought to be reworked to use the normal call_dissector interface. */
35int dissect_h263_picture_layer( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int length, bool is_rfc4626);
36int dissect_h263_group_of_blocks_layer( tvbuff_t *tvb, proto_tree *tree, int offset, bool is_rfc4626);
37
38
39#endif
40
Definition packet_info.h:43
Definition proto.h:901
Definition value_string.h:25
Definition tvbuff-int.h:35