Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/wrapper_apis/python/jrtc_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
]