2
0

AVTime.inc 1.6 KB

12345678910111213141516171819202122232425
  1. { Parsed from AVFoundation.framework AVTime.h }
  2. {$ifdef CLASSES}
  3. type
  4. NSValueAVFoundationExtensions = objccategory external (NSValue)
  5. class function valueWithCMTime (time: CMTime): NSValue; message 'valueWithCMTime:'; { available in 10_7, 4_0 }
  6. function CMTimeValue_: CMTime; message 'CMTimeValue';
  7. class function valueWithCMTimeRange (timeRange: CMTimeRange): NSValue; message 'valueWithCMTimeRange:'; { available in 10_7, 4_0 }
  8. function CMTimeRangeValue: CMTimeRange; message 'CMTimeRangeValue';
  9. class function valueWithCMTimeMapping (timeMapping: CMTimeMapping): NSValue; message 'valueWithCMTimeMapping:'; { available in 10_7, 4_0 }
  10. function CMTimeMappingValue: CMTimeMapping; message 'CMTimeMappingValue';
  11. end;
  12. type
  13. AVTimeCoding = objccategory external (NSCoder)
  14. procedure encodeCMTime_forKey (time: CMTime; key: NSString); message 'encodeCMTime:forKey:'; { available in 10_7, 4_0 }
  15. function decodeCMTimeForKey (key: NSString): CMTime; message 'decodeCMTimeForKey:'; { available in 10_7, 4_0 }
  16. procedure encodeCMTimeRange_forKey (timeRange: CMTimeRange; key: NSString); message 'encodeCMTimeRange:forKey:'; { available in 10_7, 4_0 }
  17. function decodeCMTimeRangeForKey (key: NSString): CMTimeRange; message 'decodeCMTimeRangeForKey:'; { available in 10_7, 4_0 }
  18. procedure encodeCMTimeMapping_forKey (timeMapping: CMTimeMapping; key: NSString); message 'encodeCMTimeMapping:forKey:'; { available in 10_7, 4_0 }
  19. function decodeCMTimeMappingForKey (key: NSString): CMTimeMapping; message 'decodeCMTimeMappingForKey:'; { available in 10_7, 4_0 }
  20. end;
  21. {$endif}