mumble: lowercase error messages
This commit is contained in:
@@ -49,7 +49,7 @@ func (e *NullAudioEncoder) ID() int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (e *NullAudioEncoder) Encode(pcm []int16, mframeSize, maxDataBytes int) ([]byte, error) {
|
func (e *NullAudioEncoder) Encode(pcm []int16, mframeSize, maxDataBytes int) ([]byte, error) {
|
||||||
return nil, fmt.Errorf("Not implemented")
|
return nil, fmt.Errorf("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *NullAudioEncoder) Reset() {
|
func (e *NullAudioEncoder) Reset() {
|
||||||
@@ -62,7 +62,7 @@ func (d *NullAudioDecoder) ID() int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (d *NullAudioDecoder) Decode(data []byte, frameSize int) ([]int16, error) {
|
func (d *NullAudioDecoder) Decode(data []byte, frameSize int) ([]int16, error) {
|
||||||
return nil, fmt.Errorf("Not implemented")
|
return nil, fmt.Errorf("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *NullAudioDecoder) Reset() {
|
func (d *NullAudioDecoder) Reset() {
|
||||||
|
|||||||
Reference in New Issue
Block a user