test hls ll
This commit is contained in:
24
format/nvr/demuxer.go
Normal file
24
format/nvr/demuxer.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user