@@ -17,25 +17,25 @@ public class ObsStats
1717 /// Number of frames rendered
1818 /// </summary>
1919 [ JsonProperty ( PropertyName = "renderTotalFrames" ) ]
20- public int RenderTotalFrames { set ; get ; }
20+ public long RenderTotalFrames { set ; get ; }
2121
2222 /// <summary>
2323 /// Number of frames missed due to rendering lag
2424 /// </summary>
2525 [ JsonProperty ( PropertyName = "renderSkippedFrames" ) ]
26- public int RenderMissedFrames { set ; get ; }
26+ public long RenderMissedFrames { set ; get ; }
2727
2828 /// <summary>
2929 /// Number of frames outputted
3030 /// </summary>
3131 [ JsonProperty ( PropertyName = "outputTotalFrames" ) ]
32- public int OutputTotalFrames { set ; get ; }
32+ public long OutputTotalFrames { set ; get ; }
3333
3434 /// <summary>
3535 /// Number of frames skipped due to encoding lag
3636 /// </summary>
3737 [ JsonProperty ( PropertyName = "outputSkippedFrames" ) ]
38- public int OutputSkippedFrames { set ; get ; }
38+ public long OutputSkippedFrames { set ; get ; }
3939
4040 /// <summary>
4141 /// Average frame render time (in milliseconds)
@@ -65,12 +65,12 @@ public class ObsStats
6565 /// Total number of messages received by obs-websocket from the client
6666 /// </summary>
6767 [ JsonProperty ( PropertyName = "webSocketSessionIncomingMessages" ) ]
68- public int SessionIncomingMessages { get ; set ; }
68+ public long SessionIncomingMessages { get ; set ; }
6969
7070 /// <summary>
7171 /// Total number of messages sent by obs-websocket to the client
7272 /// </summary>
7373 [ JsonProperty ( PropertyName = "webSocketSessionOutgoingMessages" ) ]
74- public int SessionOutgoingMessages { get ; set ; }
74+ public long SessionOutgoingMessages { get ; set ; }
7575 }
7676}
0 commit comments