tmpfs needed

This commit is contained in:
TonyChyi
2022-10-11 08:31:16 +08:00
parent 935d5ade76
commit 3af8cf2090
3 changed files with 4 additions and 8 deletions

View File

@@ -39,7 +39,7 @@ func NewServer(o *Options) (*Server, error) {
options: o,
audioHeader: make(chan *audio.WavHeader, 1),
pcm: make(chan []byte),
ppm: make(chan io.ReadCloser), // to be configured
ppm: make(chan io.ReadCloser, 1), // to be configured
}
u, err := url.Parse(o.QmpAddress)