mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
250 B
C#
14 lines
250 B
C#
![]() |
namespace CPF.Mac.CoreMedia
|
||
|
{
|
||
|
public enum CMTimeRoundingMethod
|
||
|
{
|
||
|
RoundHalfAwayFromZero = 1,
|
||
|
RoundTowardZero = 2,
|
||
|
RoundAwayFromZero = 3,
|
||
|
QuickTime = 4,
|
||
|
RoundTowardPositiveInfinity = 5,
|
||
|
RoundTowardNegativeInfinity = 6,
|
||
|
Default = 1
|
||
|
}
|
||
|
}
|