summaryrefslogtreecommitdiffstats
path: root/packages/meshbay-node/tests/test_stream_capacity_config.py
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 02:32:59 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 16:45:37 +0200
commit535366b90c170691842311a3898a3d83d744ef75 (patch)
treec45b00a8fd21d5e47ce436afdaab96765160e669 /packages/meshbay-node/tests/test_stream_capacity_config.py
parent5e58b64668537603a0f40daf9e64f1ac8b4d89b6 (diff)
downloadmeshbay-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_config.py')
-rw-r--r--packages/meshbay-node/tests/test_stream_capacity_config.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/meshbay-node/tests/test_stream_capacity_config.py b/packages/meshbay-node/tests/test_stream_capacity_config.py
index c788ba6..5514712 100644
--- a/packages/meshbay-node/tests/test_stream_capacity_config.py
+++ b/packages/meshbay-node/tests/test_stream_capacity_config.py
@@ -25,11 +25,8 @@ from pathlib import Path
import pytest
from meshbay_node.config import load_config
from meshbay_node.roots import RootSet
-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 _cfg(tmp_path: Path, body: str):