Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
adefossez committed Sep 17, 2024
1 parent 07bdd3d commit 5513c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moshi/moshi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def _decoder_loop(self) -> None:
all_pcm_data = np.concatenate((all_pcm_data, pcm))
while all_pcm_data.shape[-1] >= self.frame_size:
self._output_queue.put(all_pcm_data[: self.frame_size])
all_pcm_data = np.array(all_pcm_data[self.frame_size:])
all_pcm_data = np.array(all_pcm_data[self.frame_size :])

async def _recv_loop(self) -> None:
try:
Expand Down

0 comments on commit 5513c3c

Please sign in to comment.