Skip to content

Instantly share code, notes, and snippets.

@gabu
Created August 6, 2014 12:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gabu/fa671ae685413baebab9 to your computer and use it in GitHub Desktop.
Save gabu/fa671ae685413baebab9 to your computer and use it in GitHub Desktop.
CMTimeMake vs CMTimeMakeWithSeconds
NSLog(@"%f", CMTimeGetSeconds(CMTimeMake(3.25, 1))); // 3.000000
NSLog(@"%f", CMTimeGetSeconds(CMTimeMake(3.25 * 100, 100))); // 3.250000
NSLog(@"%f", CMTimeGetSeconds(CMTimeMakeWithSeconds(3.25, 1))); // 3.000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment