diff options
| author | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-11-02 15:27:18 +0800 |
| commit | e9c24f4af7ed56760f6db7941827d09f6db9020b (patch) | |
| tree | 62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/bridge/mumble/codec.go | |
| parent | 58d5e7cfda4781d8a57ec52aefd02983835c301a (diff) | |
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/bridge/mumble/codec.go')
| -rw-r--r-- | teleirc/matterbridge/bridge/mumble/codec.go | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/teleirc/matterbridge/bridge/mumble/codec.go b/teleirc/matterbridge/bridge/mumble/codec.go new file mode 100644 index 0000000..1306e40 --- /dev/null +++ b/teleirc/matterbridge/bridge/mumble/codec.go @@ -0,0 +1,70 @@ +package bmumble + +import ( + "fmt" + + "layeh.com/gumble/gumble" +) + +// This is a dummy implementation of a Gumble audio codec which claims +// to implement Opus, but does not actually do anything. This serves +// as a workaround until https://github.com/layeh/gumble/pull/61 is +// merged. +// See https://github.com/42wim/matterbridge/issues/1750 for details. + +const ( + audioCodecIDOpus = 4 +) + +func registerNullCodecAsOpus() { + codec := &NullCodec{ + encoder: &NullAudioEncoder{}, + decoder: &NullAudioDecoder{}, + } + gumble.RegisterAudioCodec(audioCodecIDOpus, codec) +} + +type NullCodec struct { + encoder *NullAudioEncoder + decoder *NullAudioDecoder +} + +func (c *NullCodec) ID() int { + return audioCodecIDOpus +} + +func (c *NullCodec) NewEncoder() gumble.AudioEncoder { + e := &NullAudioEncoder{} + return e +} + +func (c *NullCodec) NewDecoder() gumble.AudioDecoder { + d := &NullAudioDecoder{} + return d +} + +type NullAudioEncoder struct{} + +func (e *NullAudioEncoder) ID() int { + return audioCodecIDOpus +} + +func (e *NullAudioEncoder) Encode(pcm []int16, mframeSize, maxDataBytes int) ([]byte, error) { + return nil, fmt.Errorf("not implemented") +} + +func (e *NullAudioEncoder) Reset() { +} + +type NullAudioDecoder struct{} + +func (d *NullAudioDecoder) ID() int { + return audioCodecIDOpus +} + +func (d *NullAudioDecoder) Decode(data []byte, frameSize int) ([]int16, error) { + return nil, fmt.Errorf("not implemented") +} + +func (d *NullAudioDecoder) Reset() { +} |
