test hls ll

This commit is contained in:
Andrey Semochkin
2021-04-19 20:59:55 +03:00
parent be0abf0857
commit 2eeda69894
29 changed files with 5883 additions and 0 deletions

24
format/nvr/demuxer.go Normal file
View File

@@ -0,0 +1,24 @@
package nvr
type DeMuxer struct {
}
//NewDeMuxer func
func NewDeMuxer() *DeMuxer {
return &DeMuxer{}
}
//ReadIndex func
func (obj *DeMuxer) ReadIndex() (err error) {
return nil
}
//ReadRange func
func (obj *DeMuxer) ReadRange() (err error) {
return nil
}
//ReadGop func
func (obj *DeMuxer) ReadGop() (err error) {
return nil
}