diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-24 02:32:59 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-24 16:45:37 +0200 |
| commit | 535366b90c170691842311a3898a3d83d744ef75 (patch) | |
| tree | c45b00a8fd21d5e47ce436afdaab96765160e669 /packages/meshbay-node/tests/test_stream_capacity.py | |
| parent | 5e58b64668537603a0f40daf9e64f1ac8b4d89b6 (diff) | |
| download | meshbay-535366b90c170691842311a3898a3d83d744ef75.tar.gz | |
refactor(node): move video streaming out of webrtc_server
StreamingMixin in transport/webrtc/apps/streaming.py: stream credit,
handover, the transcode slots and _stream_video_inner, moved unchanged.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/tests/test_stream_capacity.py')
| -rw-r--r-- | packages/meshbay-node/tests/test_stream_capacity.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/meshbay-node/tests/test_stream_capacity.py b/packages/meshbay-node/tests/test_stream_capacity.py index 7ce6bf6..aecee6f 100644 --- a/packages/meshbay-node/tests/test_stream_capacity.py +++ b/packages/meshbay-node/tests/test_stream_capacity.py @@ -17,11 +17,8 @@ find. import asyncio import pytest -from meshbay_node.transport.webrtc_server import ( - MAX_CONCURRENT_TRANSCODES, - WebRTCPeerSession, - WebRTCTransport, -) +from meshbay_node.transport.webrtc.apps.streaming import MAX_CONCURRENT_TRANSCODES +from meshbay_node.transport.webrtc_server import WebRTCPeerSession, WebRTCTransport def _pool(transport) -> asyncio.Semaphore: |