AVAssetTrackSegment.inc 403 B

1234567891011121314151617181920
  1. { Parsed from AVFoundation.framework AVAssetTrackSegment.h }
  2. {$ifdef TYPES}
  3. type
  4. AVAssetTrackSegmentPtr = ^AVAssetTrackSegment;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. AVAssetTrackSegment = objcclass external (NSObject)
  9. private
  10. _timeMapping: CMTimeMapping;
  11. public
  12. function timeMapping: CMTimeMapping; message 'timeMapping';
  13. function isEmpty: ObjCBOOL; message 'isEmpty';
  14. end;
  15. {$endif}