fixing parser

This commit is contained in:
Saxon1 2018-05-06 17:29:05 +09:30
parent b111d98892
commit b5b82f6b7c
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ func (p *h264Parser) Stop() {
// Start starts the parse func as a goroutine so that incoming data is interpreted
func (p *h264Parser) Start() {
p.isParsing = true
go p.parse()
}