Skip to content

Commit

Permalink
Merge pull request #906 from pipecat-ai/aleix/fix-duplicate-base-outp…
Browse files Browse the repository at this point in the history
…ut-frames

transports(base_output): fix duplicate push_frame()
  • Loading branch information
aconchillo authored Dec 23, 2024
2 parents 9c105e2 + c04c69d commit cd7dec7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/pipecat/transports/base_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,6 @@ async def _sink_frame_handler(self, frame: Frame):
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
Expand All @@ -262,8 +260,13 @@ async def _sink_clock_task_handler(self):
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
Expand Down

0 comments on commit cd7dec7

Please sign in to comment.