]> gitweb.factorcode.org Git - factor.git/blob - extra/qtkit/qtkit.factor
put mach call_fault_handler in the vm
[factor.git] / extra / qtkit / qtkit.factor
1 USING: classes.struct cocoa core-foundation.strings ;
2 IN: qtkit
3
4 STRUCT: QTTime
5     { timeValue longlong }
6     { timeScale long }
7     { flags     long } ;
8
9 STRUCT: QTTimeRange
10     { time      QTTime }
11     { duration  QTTime } ;
12
13 STRUCT: SMPTETime
14     { mSubframes       SInt16 }
15     { mSubframeDivisor SInt16 }
16     { mCounter         UInt32 }
17     { mType            UInt32 }
18     { mFlags           UInt32 }
19     { mHours           SInt16 }
20     { mMinutes         SInt16 }
21     { mSeconds         SInt16 }
22     { mFrames          SInt16 } ;
23
24 CFSTRING: QTKitErrorDomain "QTKitErrorDomain"
25 CFSTRING: QTErrorCaptureInputKey "QTErrorCaptureInputKey"
26 CFSTRING: QTErrorCaptureOutputKey "QTErrorCaptureOutputKey"
27 CFSTRING: QTErrorDeviceKey "QTErrorDeviceKey"
28 CFSTRING: QTErrorExcludingDeviceKey "QTErrorExcludingDeviceKey"
29 CFSTRING: QTErrorTimeKey "QTErrorTimeKey"
30 CFSTRING: QTErrorFileSizeKey "QTErrorFileSizeKey"
31 CFSTRING: QTErrorRecordingSuccesfullyFinishedKey "QTErrorRecordingSuccesfullyFinishedKey"
32
33 CONSTANT: QTErrorUnknown                                      -1
34 CONSTANT: QTErrorIncompatibleInput                          1002
35 CONSTANT: QTErrorIncompatibleOutput                         1003
36 CONSTANT: QTErrorInvalidInputsOrOutputs                     1100
37 CONSTANT: QTErrorDeviceAlreadyUsedbyAnotherSession          1101
38 CONSTANT: QTErrorNoDataCaptured                             1200
39 CONSTANT: QTErrorSessionConfigurationChanged                1201
40 CONSTANT: QTErrorDiskFull                                   1202
41 CONSTANT: QTErrorDeviceWasDisconnected                      1203
42 CONSTANT: QTErrorMediaChanged                               1204
43 CONSTANT: QTErrorMaximumDurationReached                     1205
44 CONSTANT: QTErrorMaximumFileSizeReached                     1206
45 CONSTANT: QTErrorMediaDiscontinuity                         1207
46 CONSTANT: QTErrorMaximumNumberOfSamplesForFileFormatReached 1208
47 CONSTANT: QTErrorDeviceNotConnected                         1300
48 CONSTANT: QTErrorDeviceInUseByAnotherApplication            1301
49 CONSTANT: QTErrorDeviceExcludedByAnotherDevice              1302
50
51 FRAMEWORK: /System/Library/Frameworks/QTKit.framework
52
53 IMPORT: QTCaptureAudioPreviewOutput
54 IMPORT: QTCaptureConnection
55 IMPORT: QTCaptureDecompressedAudioOutput
56 IMPORT: QTCaptureDecompressedVideoOutput
57 IMPORT: QTCaptureDevice
58 IMPORT: QTCaptureDeviceInput
59 IMPORT: QTCaptureFileOutput
60 IMPORT: QTCaptureInput
61 IMPORT: QTCaptureLayer
62 IMPORT: QTCaptureMovieFileOutput
63 IMPORT: QTCaptureOutput
64 IMPORT: QTCaptureSession
65 IMPORT: QTCaptureVideoPreviewOutput
66 IMPORT: QTCaptureView
67 IMPORT: QTCompressionOptions
68 IMPORT: QTDataReference
69 IMPORT: QTFormatDescription
70 IMPORT: QTMedia
71 IMPORT: QTMovie
72 IMPORT: QTMovieLayer
73 IMPORT: QTMovieView
74 IMPORT: QTSampleBuffer
75 IMPORT: QTTrack
76