We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
loop { input queue -> input frame i2i_processor(input_queue) -> output frame } 구조를 분리할 필요가 있음
async로 동작하지만, await이 완료될 때 까지 다음 loop로 넘어가지 않는 구조이기 때문에 기능 분리 필요
loop_input { [input queue] -> input frame some_processor_pool(input_queue) -> task task -> [task queue] } loop_output { [task queue] -> task task -> output frame output frame -> [output queue] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
loop
{
input queue -> input frame
i2i_processor(input_queue) -> output frame
}
구조를 분리할 필요가 있음
async로 동작하지만, await이 완료될 때 까지 다음 loop로 넘어가지 않는 구조이기 때문에 기능 분리 필요
loop_input
{
[input queue] -> input frame
some_processor_pool(input_queue) -> task
task -> [task queue]
}
loop_output
{
[task queue] -> task
task -> output frame
output frame -> [output queue]
}
The text was updated successfully, but these errors were encountered: