You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developing a Video Capture app.
MAUI Android Specific.
Can capture video, preview etc, all good.
But in VS Debug mode when idle get GC messages from Android every second or two such as
[videocaptureapp] Explicit concurrent mark compact GC freed 188KB AllocSpace bytes, 0(0B) LOS objects, 85% free, 4218KB/28MB, paused 54us,943us total 7.938ms
The suggested things to look for are
Excessive Object Allocation: too many short-lived objects,
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Developing a Video Capture app.
MAUI Android Specific.
Can capture video, preview etc, all good.
But in VS Debug mode when idle get GC messages from Android every second or two such as
[videocaptureapp] Explicit concurrent mark compact GC freed 188KB AllocSpace bytes, 0(0B) LOS objects, 85% free, 4218KB/28MB, paused 54us,943us total 7.938ms
The suggested things to look for are
Excessive Object Allocation: too many short-lived objects,
Memory Leaks & Unmanaged Resource: aren't properly disposed
Camera or MediaRecorder Object Retention Issue
subscribing to events without unsubscribing
Frequent UI Updates or Large Rendering Operation
Think it's preview that's doing it.
Where to start?
Or do I just ignore?
Beta Was this translation helpful? Give feedback.
All reactions