2018-08-28 13:58:57 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
lex.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
2019-05-03 13:22:23 +03:00
|
|
|
lex.go provides a lexer to extract separate JPEG images from a MJPEG stream.
|
2018-08-28 13:58:57 +03:00
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Dan Kortschak <dan@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
lex.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
|
|
|
|
*/
|
|
|
|
|
2019-05-06 09:17:51 +03:00
|
|
|
// lex.go provides a lexer to extract separate JPEG images from a MJPEG stream.
|
|
|
|
|
2019-04-26 14:01:12 +03:00
|
|
|
package mjpeg
|
2018-08-28 13:58:57 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var noDelay = make(chan time.Time)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
close(noDelay)
|
|
|
|
}
|
|
|
|
|
2019-05-03 13:22:23 +03:00
|
|
|
// Lex parses MJPEG frames read from src into separate writes to dst with
|
2018-08-28 13:58:57 +03:00
|
|
|
// successive writes being performed not earlier than the specified delay.
|
2019-04-26 14:16:43 +03:00
|
|
|
func Lex(dst io.Writer, src io.Reader, delay time.Duration) error {
|
2018-08-28 13:58:57 +03:00
|
|
|
var tick <-chan time.Time
|
|
|
|
if delay == 0 {
|
|
|
|
tick = noDelay
|
|
|
|
} else {
|
|
|
|
ticker := time.NewTicker(delay)
|
|
|
|
defer ticker.Stop()
|
|
|
|
tick = ticker.C
|
|
|
|
}
|
|
|
|
|
2019-04-26 14:01:12 +03:00
|
|
|
r := bufio.NewReader(src)
|
2018-08-28 13:58:57 +03:00
|
|
|
for {
|
2019-04-26 14:01:12 +03:00
|
|
|
buf := make([]byte, 2, 4<<10)
|
|
|
|
n, err := r.Read(buf)
|
|
|
|
if n < 2 {
|
|
|
|
return nil
|
|
|
|
}
|
2018-08-28 13:58:57 +03:00
|
|
|
if err != nil {
|
2019-10-20 01:38:19 +03:00
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
2019-10-02 18:02:34 +03:00
|
|
|
}
|
2019-10-20 01:38:19 +03:00
|
|
|
return err
|
2018-08-28 13:58:57 +03:00
|
|
|
}
|
2019-04-26 14:01:12 +03:00
|
|
|
if !bytes.Equal(buf, []byte{0xff, 0xd8}) {
|
|
|
|
return fmt.Errorf("parser: not MJPEG frame start: %#v", buf)
|
|
|
|
}
|
|
|
|
var last byte
|
|
|
|
for {
|
|
|
|
b, err := r.ReadByte()
|
2018-08-28 13:58:57 +03:00
|
|
|
if err != nil {
|
2019-10-20 01:38:19 +03:00
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
2019-10-02 18:02:34 +03:00
|
|
|
}
|
2019-10-20 01:38:19 +03:00
|
|
|
return err
|
2018-08-28 13:58:57 +03:00
|
|
|
}
|
|
|
|
buf = append(buf, b)
|
2019-04-26 14:01:12 +03:00
|
|
|
if last == 0xff && b == 0xd9 {
|
|
|
|
break
|
2018-08-28 13:58:57 +03:00
|
|
|
}
|
2019-04-26 14:01:12 +03:00
|
|
|
last = b
|
|
|
|
}
|
|
|
|
<-tick
|
|
|
|
_, err = dst.Write(buf)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2018-08-28 13:58:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|