-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added metod for logging CMTime values
- Loading branch information
1 parent
6c4fd17
commit 20f0c17
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
//********************************************************************************************************************** | ||
// | ||
// CMTime+Logging.swift | ||
// Adds logging description to CMTime | ||
// Copyright ©2016 Peter Baumgartner. All rights reserved. | ||
// | ||
//********************************************************************************************************************** | ||
|
||
|
||
import CoreMedia | ||
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------- | ||
|
||
|
||
extension CMTime | ||
{ | ||
|
||
/// Returns a string that is suitable for logging | ||
|
||
public var debugDescription : String | ||
{ | ||
let value = self.value | ||
let timescale = self.timescale | ||
return "CMTime(\(value),\(timescale))" | ||
} | ||
|
||
} | ||
|
||
|
||
//---------------------------------------------------------------------------------------------------------------------- | ||
|
||
|