Browse Source

Remove no longer used property

pull/53/head
Gabe Kangas 5 years ago
parent
commit
ae2e98877b
  1. 1
      config/config.go
  2. 2
      core/core.go
  3. 2
      core/playlist/monitor.go

1
config/config.go

@ -42,7 +42,6 @@ type videoSettings struct { @@ -42,7 +42,6 @@ type videoSettings struct {
StreamingKey string `yaml:"streamingKey"`
StreamQualities []StreamQuality `yaml:"streamQualities"`
OfflineContent string `yaml:"offlineContent"`
EnablePassthrough bool `yaml:"passthrough"`
}
// StreamQuality defines the specifics of a single HLS stream variant.

2
core/core.go

@ -69,7 +69,7 @@ func resetDirectories() { @@ -69,7 +69,7 @@ func resetDirectories() {
os.Remove("webroot/thumbnail.jpg")
// Create private hls data dirs
if !config.Config.VideoSettings.EnablePassthrough || len(config.Config.VideoSettings.StreamQualities) == 0 {
if len(config.Config.VideoSettings.StreamQualities) == 0 {
for index := range config.Config.VideoSettings.StreamQualities {
os.MkdirAll(path.Join(config.Config.PrivateHLSPath, strconv.Itoa(index)), 0777)
os.MkdirAll(path.Join(config.Config.PublicHLSPath, strconv.Itoa(index)), 0777)

2
core/playlist/monitor.go

@ -30,7 +30,7 @@ func StartVideoContentMonitor(storage models.ChunkStorageProvider) error { @@ -30,7 +30,7 @@ func StartVideoContentMonitor(storage models.ChunkStorageProvider) error {
// Create at least one structure to store the segments for the different stream variants
variants = make([]models.Variant, len(config.Config.VideoSettings.StreamQualities))
if len(config.Config.VideoSettings.StreamQualities) > 0 && !config.Config.VideoSettings.EnablePassthrough {
if len(config.Config.VideoSettings.StreamQualities) > 0 {
for index := range variants {
variants[index] = models.Variant{
VariantIndex: index,

Loading…
Cancel
Save