blob: 10aeae3674a583c6c97e78c0399792a43d6c2c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# h282.cnf
# H.282 conformation file
# 2007 Tomas Kukosa
#.OPT
PER
ALIGNED
#.END
#.OMIT_ASSIGNMENT
IrisContinuous
#.END
#.PDU
RDCPDU
NonCollapsingCapabilities
#.END
#.FIELD_RENAME
CameraFilterCapability/filterTextLabel/_item/filterTextLabel filterTextLabel_deviceText
#.FIELD_ATTR
CameraFilterCapability/filterTextLabel/_item/filterTextLabel ABBREV=filterTextLabel.deviceText
#.FN_PARS RequestPDU
VAL_PTR = &msg_type
#.FN_HDR
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_RequestPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RequestPDU/%s", p);
#.END
#.FN_PARS ResponsePDU
VAL_PTR = &msg_type
#.FN_HDR
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_ResponsePDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "ResponsePDU/%s", p);
#.END
#.FN_PARS IndicationPDU
VAL_PTR = &msg_type
#.FN_HDR
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = try_val_to_str(msg_type, VALS(h282_IndicationPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "IndicationPDU/%s", p);
#.END
|