mirror of https://bitbucket.org/ausocean/av.git
pcm: fix string format
This commit is contained in:
parent
5e472ba4c9
commit
678245c634
|
@ -293,6 +293,6 @@ func SFFromString(s string) (SampleFormat, error) {
|
||||||
case "FLOAT64_BE":
|
case "FLOAT64_BE":
|
||||||
return FLOAT64_BE, nil
|
return FLOAT64_BE, nil
|
||||||
default:
|
default:
|
||||||
return Unknown, errors.Errorf("Unknown FormatType (%d)", s)
|
return Unknown, errors.Errorf("Unknown FormatType (%s)", s)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue