ConsumerProcessor: queue frames internally instead of pushing them

This commit is contained in:
Aleix Conchillo Flaqué
2025-11-14 15:20:01 -08:00
parent 9283108240
commit 4835617b16
2 changed files with 5 additions and 1 deletions

View File

@@ -83,4 +83,4 @@ class ConsumerProcessor(FrameProcessor):
while True:
frame = await self._queue.get()
new_frame = await self._transformer(frame)
await self.push_frame(new_frame, self._direction)
await self.queue_frame(new_frame, self._direction)