av/filter/vfps.go

68 lines
2.0 KiB
Go
Raw Normal View History

/*
DESCRIPTION
A motion filter that has a variable frame rate. When motion is detected,
the filter sends all frames and when it is not, the filter sends frames
at a reduced rate, as set by a parameter.
AUTHORS
Scott Barnard <scott@ausocean.org>
LICENSE
2019-12-31 03:24:13 +03:00
vfps.go is Copyright (C) 2019 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
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
package filter
import (
"io"
)
2019-12-31 03:24:13 +03:00
// VariableFPSFilter is a filter that has a variable frame rate. When motion is
// detected, the filter sends all frames and when it is not, the filter
// sends frames at a reduced framerate.
2019-12-31 03:24:13 +03:00
type VariableFPSFilter struct {
filter Filter
dst io.WriteCloser
frames uint
count uint
}
2019-12-31 03:24:13 +03:00
// NewVariableFPSFilter returns a pointer to a new VariableFPSFilter struct.
func NewVariableFPSFilter(dst io.WriteCloser, minFPS float64, filter Filter) *VariableFPSFilter {
2019-12-27 06:21:50 +03:00
frames := uint(25 / minFPS)
2019-12-31 03:24:13 +03:00
return &VariableFPSFilter{filter, dst, frames, 0}
}
// Implements io.Writer.
// Write applies the motion filter to the video stream. Frames are sent
// at a reduced frame rate, except when motion is detected, then all frames
// with motion are sent.
2019-12-31 03:24:13 +03:00
func (v *VariableFPSFilter) Write(f []byte) (int, error) {
2019-12-27 06:21:50 +03:00
v.count = (v.count + 1) % v.frames
if v.count == 0 {
return v.dst.Write(f)
}
2019-12-31 03:24:13 +03:00
return v.filter.Write(f)
}
// Implements io.Closer.
// Close calls the motion filter's Close method.
2019-12-31 03:24:13 +03:00
func (v *VariableFPSFilter) Close() error {
return v.filter.Close()
}