Browse Source

Fix BufferedOpusEncoderPlayable cutting off playback too soon

Previously the signal for when BufferedOpusEncoderPlayable was
completed, was when the encoding process finished. However considering
we buffer the encoding, this would cause the playable to complete 4096
frames before it was actually done. We now properly just enqueue a None
(aka complete signal) when encoding is done, so that playback will
complete fully.
feature/storage
Andrei 8 years ago
parent
commit
4bab008f79
  1. 3
      disco/voice/playable.py

3
disco/voice/playable.py

@ -217,10 +217,9 @@ class BufferedOpusEncoderPlayable(BasePlayable, OpusEncoder, AbstractOpus):
self.frames.put(self.encode(raw, self.samples_per_frame)) self.frames.put(self.encode(raw, self.samples_per_frame))
gevent.idle() gevent.idle()
self.source = None self.source = None
self.frames.put(None)
def next_frame(self): def next_frame(self):
if not self.source:
return None
return self.frames.get() return self.frames.get()

Loading…
Cancel
Save