transports(base_output): fix duplicate push_frame()

This commit is contained in:
Aleix Conchillo Flaqué
2024-12-22 14:35:01 -08:00
parent 9c105e25ac
commit c04c69df95

View File

@@ -242,8 +242,6 @@ class BaseOutputTransport(FrameProcessor):
await self._set_camera_images(frame.images)
elif isinstance(frame, TransportMessageFrame):
await self.send_message(frame)
else:
await self.push_frame(frame)
async def _sink_clock_task_handler(self):
running = True
@@ -262,8 +260,13 @@ class BaseOutputTransport(FrameProcessor):
if timestamp > current_time:
wait_time = nanoseconds_to_seconds(timestamp - current_time)
await asyncio.sleep(wait_time)
# Handle frame.
await self._sink_frame_handler(frame)
# Also, push frame downstream in case anyone else needs it.
await self.push_frame(frame)
self._sink_clock_queue.task_done()
except asyncio.CancelledError:
break