This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
stream.go
460 lines (373 loc) · 10.9 KB
/
stream.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package reisen
// #cgo pkg-config: libavutil libavformat libavcodec
// #include <libavcodec/avcodec.h>
// #include <libavformat/avformat.h>
// #include <libavutil/avconfig.h>
// #include <libavcodec/bsf.h>
import "C"
import (
"fmt"
"time"
"unsafe"
)
// StreamType is a type of
// a media stream.
type StreamType int
const (
// StreamVideo denotes the stream keeping video frames.
StreamVideo StreamType = C.AVMEDIA_TYPE_VIDEO
// StreamAudio denotes the stream keeping audio frames.
StreamAudio StreamType = C.AVMEDIA_TYPE_AUDIO
)
// String returns the string representation of
// stream type identifier.
func (streamType StreamType) String() string {
switch streamType {
case StreamVideo:
return "video"
case StreamAudio:
return "audio"
default:
return ""
}
}
// TODO: add an opportunity to
// receive duration in time base units.
// Stream is an abstract media data stream.
type Stream interface {
// innerStream returns the inner
// libAV stream of the Stream object.
innerStream() *C.AVStream
// filter returns the filter context of the stream.
filter() *C.AVBSFContext
// filterIn returns the input
// packet for the stream filter.
filterIn() *C.AVPacket
// filterOut returns the output
// packet for the stream filter.
filterOut() *C.AVPacket
// open opens the stream for decoding.
open() error
// read decodes the packet and obtains a
// frame from it.
read() (bool, error)
// close closes the stream for decoding.
close() error
// Index returns the index
// number of the stream.
Index() int
// Type returns the type
// identifier of the stream.
//
// It's either video or audio.
Type() StreamType
// CodecName returns the
// shortened name of the stream codec.
CodecName() string
// CodecLongName returns the
// long name of the stream codec.
CodecLongName() string
// BitRate returns the stream
// bitrate (in bps).
BitRate() int64
// Duration returns the time
// duration of the stream
Duration() (time.Duration, error)
// TimeBase returns the numerator
// and the denominator of the stream
// time base fraction to convert
// time duration in time base units
// of the stream.
TimeBase() (int, int)
// FrameRate returns the approximate
// frame rate (FPS) of the stream.
FrameRate() (int, int)
// FrameCount returns the total number
// of frames in the stream.
FrameCount() int64
// Open opens the stream for decoding.
Open() error
// Rewind rewinds the whole media to the
// specified time location based on the stream.
Rewind(time.Duration) error
// ApplyFilter applies a filter defined
// by the given string to the stream.
ApplyFilter(string) error
// Filter returns the name and arguments
// of the filter currently applied to the
// stream or "" if no filter applied.
Filter() string
// RemoveFilter removes the currently applied
// filter from the stream and frees its memory.
RemoveFilter() error
// ReadFrame decodes the next frame from the stream.
ReadFrame() (Frame, bool, error)
// Closes the stream for decoding.
Close() error
}
// baseStream holds the information
// common for all media data streams.
type baseStream struct {
media *Media
inner *C.AVStream
codecParams *C.AVCodecParameters
codec *C.AVCodec
codecCtx *C.AVCodecContext
frame *C.AVFrame
filterArgs string
filterCtx *C.AVBSFContext
filterInPacket *C.AVPacket
filterOutPacket *C.AVPacket
skip bool
opened bool
}
// Opened returns 'true' if the stream
// is opened for decoding, and 'false' otherwise.
func (stream *baseStream) Opened() bool {
return stream.opened
}
// Index returns the index of the stream.
func (stream *baseStream) Index() int {
return int(stream.inner.index)
}
// Type returns the stream media data type.
func (stream *baseStream) Type() StreamType {
return StreamType(stream.codecParams.codec_type)
}
// CodecName returns the name of the codec
// that was used for encoding the stream.
func (stream *baseStream) CodecName() string {
if stream.codec.name == nil {
return ""
}
return C.GoString(stream.codec.name)
}
// CodecName returns the long name of the
// codec that was used for encoding the stream.
func (stream *baseStream) CodecLongName() string {
if stream.codec.long_name == nil {
return ""
}
return C.GoString(stream.codec.long_name)
}
// BitRate returns the bit rate of the stream (in bps).
func (stream *baseStream) BitRate() int64 {
return int64(stream.codecParams.bit_rate)
}
// Duration returns the duration of the stream.
func (stream *baseStream) Duration() (time.Duration, error) {
dur := stream.inner.duration
if dur < 0 {
dur = 0
}
tmNum, tmDen := stream.TimeBase()
factor := float64(tmNum) / float64(tmDen)
tm := float64(dur) * factor
return time.ParseDuration(fmt.Sprintf("%fs", tm))
}
// TimeBase the numerator and the denominator of the
// stream time base factor fraction.
//
// All the duration values of the stream are
// multiplied by this factor to get duration
// in seconds.
func (stream *baseStream) TimeBase() (int, int) {
return int(stream.inner.time_base.num),
int(stream.inner.time_base.den)
}
// FrameRate returns the frame rate of the stream
// as a fraction with a numerator and a denominator.
func (stream *baseStream) FrameRate() (int, int) {
return int(stream.inner.r_frame_rate.num),
int(stream.inner.r_frame_rate.den)
}
// FrameCount returns the total number of frames
// in the stream.
func (stream *baseStream) FrameCount() int64 {
return int64(stream.inner.nb_frames)
}
// ApplyFilter applies a filter defined
// by the given string to the stream.
func (stream *baseStream) ApplyFilter(args string) error {
status := C.av_bsf_list_parse_str(
C.CString(args), &stream.filterCtx)
if status < 0 {
return fmt.Errorf(
"%d: couldn't create a filter context", status)
}
status = C.avcodec_parameters_copy(stream.filterCtx.par_in, stream.codecParams)
if status < 0 {
return fmt.Errorf(
"%d: couldn't copy the input codec parameters to the filter", status)
}
status = C.avcodec_parameters_copy(stream.filterCtx.par_out, stream.codecParams)
if status < 0 {
return fmt.Errorf(
"%d: couldn't copy the output codec parameters to the filter", status)
}
stream.filterCtx.time_base_in = stream.inner.time_base
stream.filterCtx.time_base_out = stream.inner.time_base
status = C.av_bsf_init(stream.filterCtx)
if status < 0 {
return fmt.Errorf(
"%d: couldn't initialize the filter context", status)
}
stream.filterInPacket = C.av_packet_alloc()
if stream.filterInPacket == nil {
return fmt.Errorf(
"couldn't allocate a packet for filtering in")
}
stream.filterOutPacket = C.av_packet_alloc()
if stream.filterInPacket == nil {
return fmt.Errorf(
"couldn't allocate a packet for filtering out")
}
stream.filterArgs = args
return nil
}
// Filter returns the name and arguments
// of the filter currently applied to the
// stream or "" if no filter applied.
func (stream *baseStream) Filter() string {
return stream.filterArgs
}
// RemoveFilter removes the currently applied
// filter from the stream and frees its memory.
func (stream *baseStream) RemoveFilter() error {
if stream.filterCtx == nil {
return fmt.Errorf("no filter applied")
}
C.av_bsf_free(&stream.filterCtx)
stream.filterCtx = nil
C.av_free(unsafe.Pointer(stream.filterInPacket))
stream.filterInPacket = nil
C.av_free(unsafe.Pointer(stream.filterOutPacket))
stream.filterOutPacket = nil
return nil
}
// Rewind rewinds the stream to
// the specified time position.
//
// Can be used on all the types
// of streams. However, it's better
// to use it on the video stream of
// the media file if you don't want
// the streams of the playback to
// desynchronyze.
func (stream *baseStream) Rewind(t time.Duration) error {
tmNum, tmDen := stream.TimeBase()
factor := float64(tmDen) / float64(tmNum)
seconds := t.Seconds()
dur := int64(seconds * factor)
status := C.av_seek_frame(stream.media.ctx,
stream.inner.index, rewindPosition(dur),
C.AVSEEK_FLAG_FRAME|C.AVSEEK_FLAG_BACKWARD)
if status < 0 {
return fmt.Errorf(
"%d: couldn't rewind the stream", status)
}
return nil
}
// innerStream returns the inner
// libAV stream of the Stream object.
func (stream *baseStream) innerStream() *C.AVStream {
return stream.inner
}
// filter returns the filter context of the stream.
func (stream *baseStream) filter() *C.AVBSFContext {
return stream.filterCtx
}
// filterIn returns the input
// packet for the stream filter.
func (stream *baseStream) filterIn() *C.AVPacket {
return stream.filterInPacket
}
// filterOut returns the output
// packet for the stream filter.
func (stream *baseStream) filterOut() *C.AVPacket {
return stream.filterOutPacket
}
// open opens the stream for decoding.
func (stream *baseStream) open() error {
stream.codecCtx = C.avcodec_alloc_context3(stream.codec)
if stream.codecCtx == nil {
return fmt.Errorf("couldn't open a codec context")
}
status := C.avcodec_parameters_to_context(
stream.codecCtx, stream.codecParams)
if status < 0 {
return fmt.Errorf(
"%d: couldn't send codec parameters to the context", status)
}
status = C.avcodec_open2(stream.codecCtx, stream.codec, nil)
if status < 0 {
return fmt.Errorf(
"%d: couldn't open the codec context", status)
}
stream.frame = C.av_frame_alloc()
if stream.frame == nil {
return fmt.Errorf(
"couldn't allocate a new frame")
}
stream.opened = true
return nil
}
// read decodes the packet and obtains a
// frame from it.
func (stream *baseStream) read() (bool, error) {
readPacket := stream.media.packet
if stream.filterCtx != nil {
readPacket = stream.filterOutPacket
}
status := C.avcodec_send_packet(
stream.codecCtx, readPacket)
if status < 0 {
stream.skip = false
return false, fmt.Errorf(
"%d: couldn't send the packet to the codec context", status)
}
status = C.avcodec_receive_frame(
stream.codecCtx, stream.frame)
if status < 0 {
if status == C.int(ErrorAgain) {
stream.skip = true
return true, nil
}
stream.skip = false
return false, fmt.Errorf(
"%d: couldn't receive the frame from the codec context", status)
}
C.av_packet_unref(stream.media.packet)
if stream.filterInPacket != nil {
C.av_packet_unref(stream.filterInPacket)
}
if stream.filterOutPacket != nil {
C.av_packet_unref(stream.filterOutPacket)
}
stream.skip = false
return true, nil
}
// close closes the stream for decoding.
func (stream *baseStream) close() error {
C.av_free(unsafe.Pointer(stream.frame))
stream.frame = nil
status := C.avcodec_close(stream.codecCtx)
if status < 0 {
return fmt.Errorf(
"%d: couldn't close the codec", status)
}
if stream.filterCtx != nil {
C.av_bsf_free(&stream.filterCtx)
stream.filterCtx = nil
}
if stream.filterInPacket != nil {
C.av_free(unsafe.Pointer(stream.filterInPacket))
stream.filterInPacket = nil
}
if stream.filterOutPacket != nil {
C.av_free(unsafe.Pointer(stream.filterOutPacket))
stream.filterOutPacket = nil
}
stream.opened = false
return nil
}