VOOSMPAnalyticsFilter.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 #import "VOOSMPType.h"
15 
16 EXPORT_API
17 @interface VOOSMPAnalyticsFilter : NSObject
18 {
19  int _lastTime;
24 }
25 
29 @property (readwrite, assign, getter=getLastTime) int lastTime;
30 
34 @property (readwrite, assign, getter=getSourceTime) int sourceTime;
35 
39 @property (readwrite, assign, getter=getCodecTime) int codecTime;
40 
44 @property (readwrite, assign, getter=getRenderTime) int renderTime;
45 
49 @property (readwrite, assign, getter=getJitterTime) int jitterTime;
50 
62 - (id) init:(int)lastTime sourceTime:(int)sourceTime codecTime:(int)codecTime renderTime:(int)renderTime jitterTime:(int)jitterTime;
63 
64 @end
65 
int sourceTime
Number of instances that will be recorded when the source exceeds this time (ms). ...
Definition: VOOSMPAnalyticsFilter.h:34
int jitterTime
Number of instances that will be recorded when the jitter exceeds this time (ms). ...
Definition: VOOSMPAnalyticsFilter.h:49
int lastTime
How far back to report (seconds).
Definition: VOOSMPAnalyticsFilter.h:29
int _codecTime
Definition: VOOSMPAnalyticsFilter.h:21
int renderTime
Number of instances that will be recorded when the render exceeds this time (ms). ...
Definition: VOOSMPAnalyticsFilter.h:44
Definition: VOOSMPAnalyticsFilter.h:17
int _jitterTime
Definition: VOOSMPAnalyticsFilter.h:23
int codecTime
Number of instances that will be recorded when the codec exceeds this time (ms).
Definition: VOOSMPAnalyticsFilter.h:39
int _renderTime
Definition: VOOSMPAnalyticsFilter.h:22
int _lastTime
Definition: VOOSMPAnalyticsFilter.h:19
int _sourceTime
Definition: VOOSMPAnalyticsFilter.h:20