File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -98,8 +98,6 @@ class RoomOptions:
9898 """Options for end-to-end encryption."""
9999 rtc_config : RtcConfiguration | None = None
100100 """WebRTC-related configuration."""
101- audio_filters : List [ModuleType ] | None = None
102- """Audio filters"""
103101
104102
105103@dataclass
@@ -147,7 +145,6 @@ def __init__(
147145 self ._info = proto_room .RoomInfo ()
148146 self ._rpc_invocation_tasks : set [asyncio .Task ] = set ()
149147 self ._data_stream_tasks : set [asyncio .Task ] = set ()
150- self ._filter_instances : Dict [ModuleType , AudioFilter ] = {}
151148
152149 self ._remote_participants : Dict [str , RemoteParticipant ] = {}
153150 self ._connection_state = ConnectionState .CONN_DISCONNECTED
@@ -860,12 +857,6 @@ def _create_remote_participant(
860857 self ._remote_participants [participant .identity ] = participant
861858 return participant
862859
863- def _filter_handle (self , plugin ) -> int | None :
864- f = self ._filter_instances .get (plugin )
865- if f :
866- return f .handle ()
867- return None
868-
869860 def __repr__ (self ) -> str :
870861 sid = "unknown"
871862 if self ._first_sid_future .done ():
You can’t perform that action at this time.
0 commit comments