integrations.discord.events.audioop
integrations/discord/events/audioop.py
- audioop.py - ダミーモジュール(音声機能を使用しないため空実装)
1# pylint: skip-file 2""" 3integrations/discord/events/audioop.py 4 5- audioop.py - ダミーモジュール(音声機能を使用しないため空実装) 6""" 7 8 9def mul(data, width, factor): 10 return data 11 12 13def add(data1, data2, width): 14 return data1 15 16 17def bias(data, width, bias): 18 return data 19 20 21def getsample(data, width, index): 22 return 0 23 24 25def max(data, width): 26 return 0 27 28 29def rms(data, width): 30 return 0
def
mul(data, width, factor):
def
add(data1, data2, width):
def
bias(data, width, bias):
def
getsample(data, width, index):
def
max(data, width):
def
rms(data, width):