-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathencoder.go
281 lines (238 loc) · 7.33 KB
/
encoder.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package astilibav
import (
"context"
"fmt"
"sync/atomic"
"github.com/asticode/goav/avformat"
"github.com/pkg/errors"
"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/avutil"
)
var countEncoder uint64
// Encoder represents an object capable of encoding frames
type Encoder struct {
*astiencoder.BaseNode
ctxCodec *avcodec.Context
d *pktDispatcher
e astiencoder.EmitEventFunc
prev Descriptor
q *astisync.CtxQueue
statIncomingRate *astistat.IncrementStat
statWorkRatio *astistat.DurationRatioStat
}
// NewEncoder creates a new encoder
func NewEncoder(ctxCodec *avcodec.Context, prev Descriptor, ee astiencoder.EmitEventFunc, c *astiencoder.Closer) (e *Encoder) {
count := atomic.AddUint64(&countEncoder, uint64(1))
e = &Encoder{
BaseNode: astiencoder.NewBaseNode(ee, astiencoder.NodeMetadata{
Description: "Encodes",
Label: fmt.Sprintf("Encoder #%d", count),
Name: fmt.Sprintf("encoder_%d", count),
}),
ctxCodec: ctxCodec,
d: newPktDispatcher(c),
e: ee,
prev: prev,
q: astisync.NewCtxQueue(),
statIncomingRate: astistat.NewIncrementStat(),
statWorkRatio: astistat.NewDurationRatioStat(),
}
e.addStats()
return
}
// NewEncoderFromContext creates a new encoder based on a context
func NewEncoderFromContext(ctx Context, prev Descriptor, e astiencoder.EmitEventFunc, c *astiencoder.Closer) (_ *Encoder, err error) {
// Find encoder
var cdc *avcodec.Codec
if len(ctx.CodecName) > 0 {
if cdc = avcodec.AvcodecFindEncoderByName(ctx.CodecName); cdc == nil {
err = fmt.Errorf("astilibav: no encoder with name %s", ctx.CodecName)
return
}
} else if ctx.CodecID > 0 {
if cdc = avcodec.AvcodecFindEncoder(ctx.CodecID); cdc == nil {
err = fmt.Errorf("astilibav: no encoder with id %+v", ctx.CodecID)
return
}
} else {
err = errors.New("astilibav: neither codec name nor codec id provided")
return
}
// Check whether the context is valid with the codec
if err = ctx.validWithCodec(cdc); err != nil {
err = errors.Wrap(err, "astilibav: checking whether the context is valid with the codec failed")
return
}
// Alloc context
var ctxCodec *avcodec.Context
if ctxCodec = cdc.AvcodecAllocContext3(); ctxCodec == nil {
err = errors.New("astilibav: no context allocated")
return
}
// Set global context parameters
ctxCodec.SetFlags(ctxCodec.Flags() | avcodec.AV_CODEC_FLAG_GLOBAL_HEADER)
if ctx.ThreadCount != nil {
ctxCodec.SetThreadCount(*ctx.ThreadCount)
}
// Set media type-specific context parameters
switch ctx.CodecType {
case avutil.AVMEDIA_TYPE_AUDIO:
ctxCodec.SetBitRate(int64(ctx.BitRate))
ctxCodec.SetChannelLayout(ctx.ChannelLayout)
ctxCodec.SetChannels(ctx.Channels)
ctxCodec.SetSampleFmt(ctx.SampleFmt)
ctxCodec.SetSampleRate(ctx.SampleRate)
case avutil.AVMEDIA_TYPE_VIDEO:
ctxCodec.SetBitRate(int64(ctx.BitRate))
ctxCodec.SetFramerate(ctx.FrameRate)
ctxCodec.SetGopSize(ctx.GopSize)
ctxCodec.SetHeight(ctx.Height)
ctxCodec.SetPixFmt(ctx.PixelFormat)
ctxCodec.SetSampleAspectRatio(ctx.SampleAspectRatio)
ctxCodec.SetTimeBase(ctx.TimeBase)
ctxCodec.SetWidth(ctx.Width)
default:
err = fmt.Errorf("astilibav: encoder doesn't handle %v codec type", ctx.CodecType)
return
}
// Dict
var dict *avutil.Dictionary
if len(ctx.Dict) > 0 {
// Parse dict
if ret := avutil.AvDictParseString(&dict, ctx.Dict, "=", ",", 0); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avutil.AvDictParseString on %s failed", ctx.Dict)
return
}
// Make sure the dict is freed
defer avutil.AvDictFree(&dict)
}
// Open codec
if ret := ctxCodec.AvcodecOpen2(cdc, &dict); ret < 0 {
err = errors.Wrap(newAvError(ret), "astilibav: d.ctxCodec.AvcodecOpen2 failed")
return
}
// Make sure the codec is closed
c.Add(func() error {
if ret := ctxCodec.AvcodecClose(); ret < 0 {
emitAvError(e, ret, "d.ctxCodec.AvcodecClose failed")
}
return nil
})
// Create encoder
return NewEncoder(ctxCodec, prev, e, c), nil
}
func (e *Encoder) addStats() {
// Add incoming rate
e.Stater().AddStat(astistat.StatMetadata{
Description: "Number of frames coming in the encoder per second",
Label: "Incoming rate",
Unit: "fps",
}, e.statIncomingRate)
// Add work ratio
e.Stater().AddStat(astistat.StatMetadata{
Description: "Percentage of time spent doing some actual work",
Label: "Work ratio",
Unit: "%",
}, e.statWorkRatio)
// Add dispatcher stats
e.d.addStats(e.Stater())
// Add queue stats
e.q.AddStats(e.Stater())
}
// Connect connects the encoder to a PktHandler
func (e *Encoder) Connect(h PktHandler) {
// Append handler
e.d.addHandler(h)
// Connect nodes
astiencoder.ConnectNodes(e, h.(astiencoder.Node))
}
// Start starts the encoder
func (e *Encoder) Start(ctx context.Context, t astiencoder.CreateTaskFunc) {
e.BaseNode.Start(ctx, t, func(t *astiworker.Task) {
// Handle context
go e.q.HandleCtx(e.Context())
// Make sure to wait for all dispatcher subprocesses to be done so that they are properly closed
defer e.d.wait()
// Make sure to flush the encoder
defer e.flush()
// Make sure to stop the queue properly
defer e.q.Stop()
// Start queue
e.q.Start(func(p interface{}) {
// Handle pause
defer e.HandlePause()
// Assert payload
f := p.(*avutil.Frame)
// Increment incoming rate
e.statIncomingRate.Add(1)
// Encode
e.encode(f)
})
})
}
func (e *Encoder) flush() {
e.encode(nil)
}
func (e *Encoder) encode(f *avutil.Frame) {
// Send frame to encoder
e.statWorkRatio.Add(true)
if ret := avcodec.AvcodecSendFrame(e.ctxCodec, f); ret < 0 {
e.statWorkRatio.Done(true)
emitAvError(e.e, ret, "avcodec.AvcodecSendFrame failed")
return
}
e.statWorkRatio.Done(true)
// Loop
for {
// Receive pkt
if stop := e.receivePkt(); stop {
return
}
}
}
func (e *Encoder) receivePkt() (stop bool) {
// Get pkt from pool
pkt := e.d.getPkt()
defer e.d.putPkt(pkt)
// Receive pkt
e.statWorkRatio.Add(true)
if ret := avcodec.AvcodecReceivePacket(e.ctxCodec, pkt); ret < 0 {
e.statWorkRatio.Done(true)
if ret != avutil.AVERROR_EOF && ret != avutil.AVERROR_EAGAIN {
emitAvError(e.e, ret, "avcodec.AvcodecReceivePacket failed")
}
stop = true
return
}
e.statWorkRatio.Done(true)
// Rescale timestamps
pkt.AvPacketRescaleTs(e.prev.TimeBase(), e.ctxCodec.TimeBase())
// Dispatch pkt
e.d.dispatch(pkt)
return
}
// HandleFrame implements the FrameHandler interface
func (e *Encoder) HandleFrame(f *avutil.Frame) {
e.q.Send(f)
}
// AddStream adds a stream based on the codec ctx
func (e *Encoder) AddStream(ctxFormat *avformat.Context) (o *avformat.Stream, err error) {
// Add stream
o = AddStream(ctxFormat)
// Set codec parameters
if ret := avcodec.AvcodecParametersFromContext(o.CodecParameters(), e.ctxCodec); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avcodec.AvcodecParametersFromContext from %+v to %+v failed", e.ctxCodec, o.CodecParameters())
return
}
// Set other attributes
o.SetTimeBase(e.ctxCodec.TimeBase())
return
}
// TimeBase implements the Descriptor interface
func (e *Encoder) TimeBase() avutil.Rational {
return e.ctxCodec.TimeBase()
}