Skip to content

Commit 01ad902

Browse files
committed
decode_pcapng: Add HDMI v102, 103, 104
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 7a07688 commit 01ad902

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

decode_pcapng.py

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,51 @@ def usb_urb(s):
121121
}
122122
}
123123
},
124+
102: {
125+
'type': 'HDMI',
126+
'filename': 'hdmi-flash-102.pcapng',
127+
'second_first': True,
128+
'devices': {
129+
1: {
130+
'busid': 2,
131+
'device': 8,
132+
},
133+
2: {
134+
'busid': 2,
135+
'device': 9,
136+
}
137+
}
138+
},
139+
103: {
140+
'type': 'HDMI',
141+
'filename': 'hdmi-flash-103.pcapng',
142+
'second_first': True,
143+
'devices': {
144+
1: {
145+
'busid': 2,
146+
'device': 6,
147+
},
148+
2: {
149+
'busid': 2,
150+
'device': 7,
151+
}
152+
}
153+
},
154+
104: {
155+
'type': 'HDMI',
156+
'filename': 'hdmi-flash-104.pcapng',
157+
'second_first': True,
158+
'devices': {
159+
1: {
160+
'busid': 2,
161+
'device': 4,
162+
},
163+
2: {
164+
'busid': 2,
165+
'device': 5,
166+
}
167+
}
168+
},
124169
105: {
125170
'type': 'HDMI',
126171
'filename': 'hdmi-flash-105.pcapng',

0 commit comments

Comments
 (0)