File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,7 @@ def _create_owned_stream(self) -> Any:
239239 new_audio_stream .track_handle = self ._track ._ffi_handle .handle
240240 new_audio_stream .sample_rate = self ._sample_rate
241241 new_audio_stream .num_channels = self ._num_channels
242+ new_audio_stream .queue_size_frames = 0
242243 if self ._frame_size_ms :
243244 new_audio_stream .frame_size_ms = self ._frame_size_ms
244245 new_audio_stream .type = proto_audio_frame .AudioStreamType .AUDIO_STREAM_NATIVE
@@ -257,6 +258,7 @@ def _create_owned_stream_from_participant(
257258 audio_stream_from_participant .participant_handle = participant ._ffi_handle .handle
258259 audio_stream_from_participant .sample_rate = self ._sample_rate
259260 audio_stream_from_participant .num_channels = self ._num_channels
261+ audio_stream_from_participant .queue_size_frames = 0
260262 audio_stream_from_participant .type = proto_audio_frame .AudioStreamType .AUDIO_STREAM_NATIVE
261263 audio_stream_from_participant .track_source = track_source
262264 if self ._frame_size_ms :
You can’t perform that action at this time.
0 commit comments