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
Allow processing video frames with push callbacks or delegate instead of current poll / fetching
Motivation & Examples
I explored demo and examples and I noticed is mot cases at least on iOS you have to schedule a timer to keep processing video frames at some requested interval. For applications that require minimum latency would be good to be able to process those video frames with some callback or delegate class. Ideally we could also specify dispatch queue where this processing would take place.
The motivation is to:
minimise latency or
reduce cpu usage in case scheduling timer at very low interval such as 1ms.
simplify code so doesn't require each time doing some mutex locking mechanism.
The text was updated successfully, but these errors were encountered:
🚀 Feature
Allow processing video frames with push callbacks or delegate instead of current poll / fetching
Motivation & Examples
I explored demo and examples and I noticed is mot cases at least on iOS you have to schedule a timer to keep processing video frames at some requested interval. For applications that require minimum latency would be good to be able to process those video frames with some callback or delegate class. Ideally we could also specify dispatch queue where this processing would take place.
The motivation is to:
The text was updated successfully, but these errors were encountered: