File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,12 @@ class Fake(object):
2828 PropertyChanged = 1
2929 PropertyDeleted = 2
3030
31+ JackPositionBBT = 0x10
32+ JackPositionTimecode = 0x20
33+ JackBBTFrameOffset = 0x40
34+ JackAudioVideoRatio = 0x80
35+ JackVideoFrameOffset = 0x100
36+
3137 def dlopen (self , _ ):
3238 return self
3339
Original file line number Diff line number Diff line change 6363PROPERTY_DELETED = _lib .PropertyDeleted
6464"""A property was deleted. See `Client.set_property_change_callback()`."""
6565
66+ POSITION_BBT = _lib .JackPositionBBT
67+ """Bar, Beat, Tick."""
68+ POSITION_TIMECODE = _lib .JackPositionTimecode
69+ """External timecode."""
70+ POSITION_BBT_FRAME_OFFSET = _lib .JackBBTFrameOffset
71+ """Frame offset of BBT information."""
72+ POSITION_AUDIO_VIDEO_RATIO = _lib .JackAudioVideoRatio
73+ """Audio frames per video frame."""
74+ POSITION_VIDEO_FRAME_OFFSET = _lib .JackVideoFrameOffset
75+ """Frame offset of first video frame."""
76+
6677_SUCCESS = 0
6778_FAILURE = 1
6879
You can’t perform that action at this time.
0 commit comments