Allow multiple HLS stream maps

This commit is contained in:
Ingo Oppermann
2025-03-17 10:59:10 +01:00
parent 38b248092d
commit a5831b3b1a
3 changed files with 171 additions and 55 deletions

View File

@@ -569,7 +569,7 @@ func (p *parser) parseHLSStreamMap(line []byte) error {
return err
}
p.process.hlsMapping = &mapping
p.process.hlsMapping = append(p.process.hlsMapping, mapping)
return nil
}