memories/go-vod/transcoder/chunk.go

16 lines
203 B
Go
Raw Normal View History

2023-11-01 08:03:28 +00:00
package transcoder
2023-04-04 01:44:11 +00:00
type Chunk struct {
id int
done bool
notifs []chan bool
}
func NewChunk(id int) *Chunk {
return &Chunk{
id: id,
done: false,
notifs: make([]chan bool, 0),
}
2023-10-21 18:36:22 +00:00
}