From 51317a94a88a648282f36c83dc7c31d07f175ddb Mon Sep 17 00:00:00 2001 From: Zhihua Lai Date: Wed, 16 Jul 2025 11:05:37 +0100 Subject: [PATCH] Remove jrtc_app_router_stream_id_get_device_id --- src/wrapper_apis/python/jrtc_app.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/wrapper_apis/python/jrtc_app.py b/src/wrapper_apis/python/jrtc_app.py index 9b631a8a..43e5efbb 100644 --- a/src/wrapper_apis/python/jrtc_app.py +++ b/src/wrapper_apis/python/jrtc_app.py @@ -346,12 +346,6 @@ def jrtc_app_router_channel_send_output_msg( return -1 return jrtc_router_channel_send_output_msg(chan_ctx, data, data_len) -def jrtc_app_router_stream_id_get_device_id(app: JrtcApp, stream_idx: int) -> Optional[int]: - stream = app.get_stream(stream_idx) - if not stream: - return - return jrtc_router_stream_id_get_device_id(stream) - __all__ = [ "JRTC_ROUTER_REQ_DEST_ANY", "JRTC_ROUTER_REQ_DEVICE_ID_ANY", @@ -369,5 +363,4 @@ def jrtc_app_router_stream_id_get_device_id(app: JrtcApp, stream_idx: int) -> Op "jrtc_app_destroy", "jrtc_app_router_channel_send_input_msg", "jrtc_app_router_channel_send_output_msg", - "jrtc_app_router_stream_id_get_device_id", ]