Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove everything related to transcoding via Mist #165

Merged
merged 1 commit into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions cache/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ package cache
// State is protected by mutex allowing concurent usage.
// All state manipulation is contained in this file with goal to be brief and release mutex asap.
type StreamCache struct {
Segmenting SegmentingCache
Transcoding TranscodingCache
Segmenting SegmentingCache
}

var DefaultStreamCache = NewStreamCache()
Expand All @@ -17,8 +16,5 @@ func NewStreamCache() *StreamCache {
Segmenting: SegmentingCache{
cache: make(map[string]StreamInfo),
},
Transcoding: TranscodingCache{
pushes: make(map[string]*SegmentInfo),
},
}
}
133 changes: 0 additions & 133 deletions cache/transcoding.go

This file was deleted.

164 changes: 0 additions & 164 deletions cache/transcoding_test.go

This file was deleted.

Loading