VOOSMPChunkInfo.h
1 /************************************************************************
2 VisualOn Proprietary
3 Copyright (c) 2012-2016, VisualOn, Inc. All Rights Reserved
4 
5 All data and information contained in or disclosed by this document are
6 confidential and proprietary information of VisualOn, Inc, and all rights
7 therein are expressly reserved. By accepting this material, the recipient
8 agrees that this material and the information contained therein are held
9 in confidence and in trust. The material may only be used and/or disclosed
10 as authorized in a license agreement controlling such use and disclosure.
11 ************************************************************************/
12 
13 #import <Foundation/Foundation.h>
14 
15 @protocol VOOSMPChunkInfo <NSObject>
16 
22 @property (readonly, assign, getter=getType) int type;
23 
29 @property (readonly, retain, getter=getRootURL) NSString* rootURL;
30 
36 @property (readonly, retain, getter=getURL) NSString* URL;
37 
43 @property (readonly, assign, getter=getStartTime) long startTime;
44 
50 @property (readonly, assign, getter=getDuration) long duration;
51 
57 @property (readonly, assign, getter=getTimeScale) long timeScale;
58 
64 @property (readonly, assign, getter=getErrorCode) int errorCode;
65 
66 @end
67 
68