-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathfilterer.go
239 lines (204 loc) · 6.64 KB
/
filterer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package astilibav
import (
"context"
"fmt"
"sync/atomic"
"github.com/asticode/go-astiencoder"
"github.com/asticode/go-astitools/stat"
"github.com/asticode/go-astitools/sync"
"github.com/asticode/go-astitools/worker"
"github.com/asticode/goav/avcodec"
"github.com/asticode/goav/avfilter"
"github.com/asticode/goav/avutil"
"github.com/pkg/errors"
)
var countFilterer uint64
// Filterer represents an object capable of applying a filter to frames
type Filterer struct {
*astiencoder.BaseNode
bufferSinkCtx *avfilter.Context
bufferSrcCtx *avfilter.Context
d *frameDispatcher
e astiencoder.EmitEventFunc
g *avfilter.Graph
prev Descriptor
q *astisync.CtxQueue
statIncomingRate *astistat.IncrementStat
statWorkRatio *astistat.DurationRatioStat
}
// NewFilterer creates a new filterer
func NewFilterer(bufferSrcCtx, bufferSinkCtx *avfilter.Context, g *avfilter.Graph, prev Descriptor, e astiencoder.EmitEventFunc, c *astiencoder.Closer) (f *Filterer) {
count := atomic.AddUint64(&countFilterer, uint64(1))
f = &Filterer{
BaseNode: astiencoder.NewBaseNode(e, astiencoder.NodeMetadata{
Description: "Filters",
Label: fmt.Sprintf("Filterer #%d", count),
Name: fmt.Sprintf("filterer_%d", count),
}),
bufferSinkCtx: bufferSinkCtx,
bufferSrcCtx: bufferSrcCtx,
d: newFrameDispatcher(e, c),
e: e,
g: g,
prev: prev,
q: astisync.NewCtxQueue(),
statIncomingRate: astistat.NewIncrementStat(),
statWorkRatio: astistat.NewDurationRatioStat(),
}
f.addStats()
return
}
// FiltererOptions represents filterer options
type FiltererOptions struct {
Content string
Input Context
}
// NewFiltererFromOptions creates a new filterer based on options
func NewFiltererFromOptions(o FiltererOptions, prev Descriptor, e astiencoder.EmitEventFunc, c *astiencoder.Closer) (_ *Filterer, err error) {
// Create graph
g := avfilter.AvfilterGraphAlloc()
c.Add(func() error {
g.AvfilterGraphFree()
return nil
})
// Create buffers
bufferSrc := avfilter.AvfilterGetByName("buffer")
bufferSink := avfilter.AvfilterGetByName("buffersink")
// Create filter in args
var args string
switch o.Input.CodecType {
case avcodec.AVMEDIA_TYPE_VIDEO:
args = fmt.Sprintf("video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:pixel_aspect=%d/%d", o.Input.Width, o.Input.Height, o.Input.PixelFormat, o.Input.TimeBase.Num(), o.Input.TimeBase.Den(), o.Input.SampleAspectRatio.Num(), o.Input.SampleAspectRatio.Den())
default:
err = fmt.Errorf("astilibav: codec type %v is not handled by filterer", o.Input.CodecType)
return
}
// Create filter in
var bufferSrcCtx *avfilter.Context
if ret := avfilter.AvfilterGraphCreateFilter(&bufferSrcCtx, bufferSrc, "in", args, nil, g); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avfilter.AvfilterGraphCreateFilter on args %s failed", args)
return
}
// Create filter sink
var bufferSinkCtx *avfilter.Context
if ret := avfilter.AvfilterGraphCreateFilter(&bufferSinkCtx, bufferSink, "out", "", nil, g); ret < 0 {
err = errors.Wrap(newAvError(ret), "astilibav: avfilter.AvfilterGraphCreateFilter on empty args failed")
return
}
// Create outputs
outputs := avfilter.AvfilterInoutAlloc()
defer avfilter.AvfilterInoutFree(&outputs)
outputs.SetName("in")
outputs.SetFilterCtx(bufferSrcCtx)
outputs.SetPadIdx(0)
outputs.SetNext(nil)
// Create inputs
inputs := avfilter.AvfilterInoutAlloc()
defer avfilter.AvfilterInoutFree(&inputs)
inputs.SetName("out")
inputs.SetFilterCtx(bufferSinkCtx)
inputs.SetPadIdx(0)
inputs.SetNext(nil)
// Parse content
if ret := g.AvfilterGraphParsePtr(o.Content, &inputs, &outputs, nil); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: g.AvfilterGraphParsePtr on content %s failed", o.Content)
return
}
// Configure
if ret := g.AvfilterGraphConfig(nil); ret < 0 {
err = errors.Wrap(newAvError(ret), "astilibav: g.AvfilterGraphConfig failed")
return
}
// Create filterer
return NewFilterer(bufferSrcCtx, bufferSinkCtx, g, prev, e, c), nil
}
func (f *Filterer) addStats() {
// Add incoming rate
f.Stater().AddStat(astistat.StatMetadata{
Description: "Number of frames coming in the filter per second",
Label: "Incoming rate",
Unit: "fps",
}, f.statIncomingRate)
// Add work ratio
f.Stater().AddStat(astistat.StatMetadata{
Description: "Percentage of time spent doing some actual work",
Label: "Work ratio",
Unit: "%",
}, f.statWorkRatio)
// Add dispatcher stats
f.d.addStats(f.Stater())
// Add queue stats
f.q.AddStats(f.Stater())
}
// Connect connects the filterer to a FrameHandler
func (f *Filterer) Connect(h FrameHandler) {
// Append handler
f.d.addHandler(h)
// Connect nodes
astiencoder.ConnectNodes(f, h.(astiencoder.Node))
}
// Start starts the filterer
func (f *Filterer) Start(ctx context.Context, t astiencoder.CreateTaskFunc) {
f.BaseNode.Start(ctx, t, func(t *astiworker.Task) {
// Handle context
go f.q.HandleCtx(f.Context())
// Make sure to wait for all dispatcher subprocesses to be done so that they are properly closed
defer f.d.wait()
// Make sure to stop the queue properly
defer f.q.Stop()
// Start queue
f.q.Start(func(p interface{}) {
// Handle pause
defer f.HandlePause()
// Assert payload
fm := p.(*avutil.Frame)
// Increment incoming rate
f.statIncomingRate.Add(1)
// Push frame in graph
f.statWorkRatio.Add(true)
if ret := f.g.AvBuffersrcAddFrameFlags(f.bufferSrcCtx, fm, avfilter.AV_BUFFERSRC_FLAG_KEEP_REF); ret < 0 {
f.statWorkRatio.Done(true)
emitAvError(f.e, ret, "f.g.AvBuffersrcAddFrameFlags failed")
return
}
f.statWorkRatio.Done(true)
// Loop
for {
// Pull filtered frame
if stop := f.pullFilteredFrame(); stop {
return
}
}
})
})
}
func (f *Filterer) pullFilteredFrame() (stop bool) {
// Get frame
fm := f.d.getFrame()
defer f.d.putFrame(fm)
// Pull filtered frame from graph
f.statWorkRatio.Add(true)
if ret := f.g.AvBuffersinkGetFrame(f.bufferSinkCtx, fm); ret < 0 {
f.statWorkRatio.Done(true)
if ret != avutil.AVERROR_EOF && ret != avutil.AVERROR_EAGAIN {
emitAvError(f.e, ret, "f.g.AvBuffersinkGetFrame failed")
}
stop = true
return
}
f.statWorkRatio.Done(true)
// Dispatch frame
f.d.dispatch(fm)
return
}
// HandleFrame implements the FrameHandler interface
func (f *Filterer) HandleFrame(fm *avutil.Frame) {
f.q.Send(fm)
}
// TimeBase implements the Descriptor interface
func (f *Filterer) TimeBase() avutil.Rational {
if f.bufferSinkCtx.NbInputs() == 0 {
return f.prev.TimeBase()
}
return f.bufferSinkCtx.Inputs()[0].TimeBase()
}