@@ -185,10 +185,7 @@ def __init__(self, **keyargs):
185
185
# @sa IC_GetVideoFormatCount
186
186
GetVideoFormat = __tisgrabber .IC_GetVideoFormat
187
187
GetVideoFormat .restype = C .c_char_p
188
- GetVideoFormat .argtypes = (
189
- GrabberHandlePtr ,
190
- C .c_int ,
191
- )
188
+ GetVideoFormat .argtypes = (GrabberHandlePtr , C .c_int )
192
189
193
190
# Get the number of the available input channels for the current device.
194
191
# A video capture device must have been opened before this call.
@@ -216,10 +213,7 @@ def __init__(self, **keyargs):
216
213
# @sa IC_GetInputChannelCount
217
214
GetInputChannel = __tisgrabber .IC_GetInputChannel
218
215
GetInputChannel .restype = C .c_char_p
219
- GetInputChannel .argtypes = (
220
- GrabberHandlePtr ,
221
- C .c_int ,
222
- )
216
+ GetInputChannel .argtypes = (GrabberHandlePtr , C .c_int )
223
217
224
218
# Get the number of the available video norms for the current device.
225
219
# A video capture device must have been opened before this call.
@@ -248,17 +242,11 @@ def __init__(self, **keyargs):
248
242
# @sa IC_GetVideoNormCount
249
243
GetVideoNorm = __tisgrabber .IC_GetVideoNorm
250
244
GetVideoNorm .restype = C .c_char_p
251
- GetVideoNorm .argtypes = (
252
- GrabberHandlePtr ,
253
- C .c_int ,
254
- )
245
+ GetVideoNorm .argtypes = (GrabberHandlePtr , C .c_int )
255
246
256
247
SetFormat = __tisgrabber .IC_SetFormat
257
248
SetFormat .restype = C .c_int
258
- SetFormat .argtypes = (
259
- GrabberHandlePtr ,
260
- C .c_int ,
261
- )
249
+ SetFormat .argtypes = (GrabberHandlePtr , C .c_int )
262
250
GetFormat = __tisgrabber .IC_GetFormat
263
251
GetFormat .restype = C .c_int
264
252
GetFormat .argtypes = (GrabberHandlePtr ,)
@@ -272,21 +260,15 @@ def __init__(self, **keyargs):
272
260
273
261
StartLive = __tisgrabber .IC_StartLive
274
262
StartLive .restype = C .c_int
275
- StartLive .argtypes = (
276
- GrabberHandlePtr ,
277
- C .c_int ,
278
- )
263
+ StartLive .argtypes = (GrabberHandlePtr , C .c_int )
279
264
280
265
StopLive = __tisgrabber .IC_StopLive
281
266
StopLive .restype = C .c_int
282
267
StopLive .argtypes = (GrabberHandlePtr ,)
283
268
284
269
SetHWND = __tisgrabber .IC_SetHWnd
285
270
SetHWND .restype = C .c_int
286
- SetHWND .argtypes = (
287
- GrabberHandlePtr ,
288
- C .c_int ,
289
- )
271
+ SetHWND .argtypes = (GrabberHandlePtr , C .c_int )
290
272
291
273
# Snaps an image. The video capture device must be set to live mode and a
292
274
# sink type has to be set before this call. The format of the snapped images depend on
@@ -306,10 +288,7 @@ def __init__(self, **keyargs):
306
288
307
289
SnapImage = __tisgrabber .IC_SnapImage
308
290
SnapImage .restype = C .c_int
309
- SnapImage .argtypes = (
310
- GrabberHandlePtr ,
311
- C .c_int ,
312
- )
291
+ SnapImage .argtypes = (GrabberHandlePtr , C .c_int )
313
292
314
293
# Retrieve the properties of the current video format and sink type
315
294
# @param hGrabber The handle to the grabber object.
@@ -363,28 +342,15 @@ def __init__(self, **keyargs):
363
342
364
343
GetCameraProperty = __tisgrabber .IC_GetCameraProperty
365
344
GetCameraProperty .restype = C .c_int
366
- GetCameraProperty .argtypes = (
367
- GrabberHandlePtr ,
368
- C .c_int ,
369
- C .POINTER (C .c_long ),
370
- )
345
+ GetCameraProperty .argtypes = (GrabberHandlePtr , C .c_int , C .POINTER (C .c_long ))
371
346
372
347
SetCameraProperty = __tisgrabber .IC_SetCameraProperty
373
348
SetCameraProperty .restype = C .c_int
374
- SetCameraProperty .argtypes = (
375
- GrabberHandlePtr ,
376
- C .c_int ,
377
- C .c_long ,
378
- )
349
+ SetCameraProperty .argtypes = (GrabberHandlePtr , C .c_int , C .c_long )
379
350
380
351
SetPropertyValue = __tisgrabber .IC_SetPropertyValue
381
352
SetPropertyValue .restype = C .c_int
382
- SetPropertyValue .argtypes = (
383
- GrabberHandlePtr ,
384
- C .c_char_p ,
385
- C .c_char_p ,
386
- C .c_int ,
387
- )
353
+ SetPropertyValue .argtypes = (GrabberHandlePtr , C .c_char_p , C .c_char_p , C .c_int )
388
354
389
355
GetPropertyValue = __tisgrabber .IC_GetPropertyValue
390
356
GetPropertyValue .restype = C .c_int
@@ -398,12 +364,7 @@ def __init__(self, **keyargs):
398
364
# ############################################################################
399
365
SetPropertySwitch = __tisgrabber .IC_SetPropertySwitch
400
366
SetPropertySwitch .restype = C .c_int
401
- SetPropertySwitch .argtypes = (
402
- GrabberHandlePtr ,
403
- C .c_char_p ,
404
- C .c_char_p ,
405
- C .c_int ,
406
- )
367
+ SetPropertySwitch .argtypes = (GrabberHandlePtr , C .c_char_p , C .c_char_p , C .c_int )
407
368
408
369
GetPropertySwitch = __tisgrabber .IC_GetPropertySwitch
409
370
GetPropertySwitch .restype = C .c_int
@@ -417,19 +378,11 @@ def __init__(self, **keyargs):
417
378
418
379
IsPropertyAvailable = __tisgrabber .IC_IsPropertyAvailable
419
380
IsPropertyAvailable .restype = C .c_int
420
- IsPropertyAvailable .argtypes = (
421
- GrabberHandlePtr ,
422
- C .c_char_p ,
423
- C .c_char_p ,
424
- )
381
+ IsPropertyAvailable .argtypes = (GrabberHandlePtr , C .c_char_p , C .c_char_p )
425
382
426
383
PropertyOnePush = __tisgrabber .IC_PropertyOnePush
427
384
PropertyOnePush .restype = C .c_int
428
- PropertyOnePush .argtypes = (
429
- GrabberHandlePtr ,
430
- C .c_char_p ,
431
- C .c_char_p ,
432
- )
385
+ PropertyOnePush .argtypes = (GrabberHandlePtr , C .c_char_p , C .c_char_p )
433
386
434
387
SetPropertyAbsoluteValue = __tisgrabber .IC_SetPropertyAbsoluteValue
435
388
SetPropertyAbsoluteValue .restype = C .c_int
0 commit comments