AVCompositionTrackSegment.inc 1.3 KB

12345678910111213141516171819202122232425
  1. { Parsed from AVFoundation.framework AVCompositionTrackSegment.h }
  2. {$ifdef TYPES}
  3. type
  4. AVCompositionTrackSegmentPtr = ^AVCompositionTrackSegment;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. AVCompositionTrackSegment = objcclass external (AVAssetTrackSegment)
  9. private
  10. _priv: AVCompositionTrackSegmentInternal;
  11. public
  12. class function compositionTrackSegmentWithURL_trackID_sourceTimeRange_targetTimeRange (URL: NSURL; trackID: CMPersistentTrackID; sourceTimeRange: CMTimeRange; targetTimeRange: CMTimeRange): AVCompositionTrackSegment; message 'compositionTrackSegmentWithURL:trackID:sourceTimeRange:targetTimeRange:';
  13. class function compositionTrackSegmentWithTimeRange (timeRange: CMTimeRange): AVCompositionTrackSegment; message 'compositionTrackSegmentWithTimeRange:';
  14. function initWithURL_trackID_sourceTimeRange_targetTimeRange (URL: NSURL; trackID: CMPersistentTrackID; sourceTimeRange: CMTimeRange; targetTimeRange: CMTimeRange): instancetype; message 'initWithURL:trackID:sourceTimeRange:targetTimeRange:';
  15. function initWithTimeRange (timeRange: CMTimeRange): instancetype; message 'initWithTimeRange:';
  16. function isEmpty: ObjCBOOL; message 'isEmpty';
  17. function sourceURL: NSURL; message 'sourceURL';
  18. function sourceTrackID: CMPersistentTrackID; message 'sourceTrackID';
  19. end;
  20. {$endif}