/* File: AVAssetTrackSegment.h Framework: AVFoundation Copyright 2010-2012 Apple Inc. All rights reserved. */ /*! @class AVAssetTrackSegment @abstract AVAssetTrackSegment represents a segment of an AVAssetTrack, comprising of a time mapping from the source to the asset track timeline. */ #import #import #import NS_CLASS_AVAILABLE(10_7, 4_0) @interface AVAssetTrackSegment : NSObject { @private CMTimeMapping _timeMapping; } /* indicates the timeRange of the track of the container file of the media presented by the AVAssetTrackSegment */ @property (nonatomic, readonly) CMTimeMapping timeMapping; /* indicates whether the AVAssetTrackSegment is an empty segment */ @property (nonatomic, readonly, getter=isEmpty) BOOL empty; @end