-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mumble: Implement a workaround to signal Opus support without pulling…
… in the CGO gopus dependency.
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
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. | ||
|
||
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() { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters