-
Notifications
You must be signed in to change notification settings - Fork 0
/
format_go112.go
633 lines (486 loc) · 14.1 KB
/
format_go112.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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
// +build go1.12
// Format.
package gmf
/*
#cgo pkg-config: libavformat libavdevice libavfilter
#include <stdlib.h>
#include "libavformat/avformat.h"
#include <libavdevice/avdevice.h>
#include "libavutil/opt.h"
static AVStream* gmf_get_stream(AVFormatContext *ctx, int idx) {
return ctx->streams[idx];
}
static int gmf_alloc_priv_data(AVFormatContext *s, AVDictionary **options) {
AVDictionary *tmp = NULL;
if (options)
av_dict_copy(&tmp, *options, 0);
if (s->iformat->priv_data_size > 0) {
if (!(s->priv_data = av_mallocz(s->iformat->priv_data_size))) {
return -1;
}
if (s->iformat->priv_class) {
*(const AVClass**)s->priv_data = s->iformat->priv_class;
av_opt_set_defaults(s->priv_data);
if (av_opt_set_dict(s->priv_data, &tmp) < 0)
return -1;
}
return (s->iformat->priv_data_size);
}
return 0;
}
static char *gmf_sprintf_sdp(AVFormatContext *ctx) {
char *sdp = malloc(sizeof(char)*16384);
av_sdp_create(&ctx, 1, sdp, sizeof(char)*16384);
return sdp;
}
*/
import "C"
import (
"errors"
"fmt"
"io"
"os"
"syscall"
"time"
"unsafe"
)
const (
AV_LOG_QUIET int = C.AV_LOG_QUIET
AV_LOG_PANIC int = C.AV_LOG_PANIC
AV_LOG_FATAL int = C.AV_LOG_FATAL
AV_LOG_ERROR int = C.AV_LOG_ERROR
AV_LOG_WARNING int = C.AV_LOG_WARNING
AV_LOG_INFO int = C.AV_LOG_INFO
AV_LOG_VERBOSE int = C.AV_LOG_VERBOSE
AV_LOG_DEBUG int = C.AV_LOG_DEBUG
FF_MOV_FLAG_FASTSTART = (1 << 7)
AVFMT_FLAG_GENPTS int = C.AVFMT_FLAG_GENPTS
AVFMTCTX_NOHEADER int = C.AVFMTCTX_NOHEADER
)
const (
PLAYLIST_TYPE_NONE int = iota
PLAYLIST_TYPE_EVENT
PLAYLIST_TYPE_VOD
PLAYLIST_TYPE_NB
)
type FmtCtx struct {
Filename string
avCtx *C.struct_AVFormatContext
ofmt *OutputFmt
streams map[int]*Stream
customPb bool
}
func init() {
C.avformat_network_init()
C.avdevice_register_all()
}
func LogSetLevel(level int) {
C.av_log_set_level(C.int(level))
}
// @todo start_time is it needed?
func NewCtx(options ...[]Option) *FmtCtx {
ctx := &FmtCtx{
avCtx: C.avformat_alloc_context(),
streams: make(map[int]*Stream),
customPb: false,
}
if ctx.avCtx == nil {
return nil
}
ctx.avCtx.start_time = 0
if len(options) == 1 {
for _, option := range options[0] {
option.Set(ctx.avCtx)
}
}
return ctx
}
func NewOutputCtx(i interface{}, options ...[]Option) (*FmtCtx, error) {
this := &FmtCtx{streams: make(map[int]*Stream)}
switch t := i.(type) {
case string:
this.ofmt = FindOutputFmt("", i.(string), "")
case *OutputFmt:
this.ofmt = i.(*OutputFmt)
default:
return nil, errors.New(fmt.Sprintf("unexpected type %v", t))
}
if this.ofmt == nil {
return nil, errors.New(fmt.Sprintf("output format is not initialized. Unable to allocate context"))
}
cfilename := C.CString(this.ofmt.Filename)
defer C.free(unsafe.Pointer(cfilename))
C.avformat_alloc_output_context2(&this.avCtx, this.ofmt.avOutputFmt, nil, cfilename)
if this.avCtx == nil {
return nil, errors.New(fmt.Sprintf("unable to allocate context"))
}
C.av_opt_set_defaults(unsafe.Pointer(this.avCtx))
if len(options) == 1 {
for _, option := range options[0] {
option.Set(this.avCtx)
}
}
this.Filename = this.ofmt.Filename
return this, nil
}
func NewOutputCtxWithFormatName(filename, format string) (*FmtCtx, error) {
this := &FmtCtx{streams: make(map[int]*Stream)}
cfilename := C.CString(filename)
defer C.free(unsafe.Pointer(cfilename))
cFormat := C.CString(format)
defer C.free(unsafe.Pointer(cFormat))
C.avformat_alloc_output_context2(&this.avCtx, nil, cFormat, cfilename)
if this.avCtx == nil {
return nil, errors.New(fmt.Sprintf("unable to allocate context"))
}
this.Filename = filename
this.ofmt = &OutputFmt{Filename: filename, avOutputFmt: this.avCtx.oformat}
return this, nil
}
// Just a helper for NewCtx().OpenInput()
func NewInputCtx(filename string) (*FmtCtx, error) {
ctx := NewCtx()
if ctx.avCtx == nil {
return nil, errors.New(fmt.Sprintf("unable to allocate context"))
}
if err := ctx.OpenInput(filename); err != nil {
return nil, err
}
return ctx, nil
}
func NewInputCtxWithFormatName(filename, format string) (*FmtCtx, error) {
ctx := NewCtx()
if ctx.avCtx == nil {
return nil, errors.New(fmt.Sprintf("unable to allocate context"))
}
if err := ctx.SetInputFormat(format); err != nil {
return nil, err
}
if err := ctx.OpenInput(filename); err != nil {
return nil, err
}
return ctx, nil
}
func (ctx *FmtCtx) SetOptions(options []*Option) {
for _, option := range options {
option.Set(ctx.avCtx)
}
}
func (ctx *FmtCtx) OpenInputWithOption(filename string, inputOptions *Option) error {
var (
cfilename *C.char
options *C.struct_AVDictionary = inputOptions.Val.(*Dict).avDict
)
if filename == "" {
cfilename = nil
} else {
cfilename = C.CString(filename)
defer C.free(unsafe.Pointer(cfilename))
}
if averr := C.avformat_open_input(&ctx.avCtx, cfilename, nil, &options); averr < 0 {
return errors.New(fmt.Sprintf("Error opening input '%s': %s", filename, AvError(int(averr))))
}
if averr := C.avformat_find_stream_info(ctx.avCtx, nil); averr < 0 {
return errors.New(fmt.Sprintf("Unable to find stream info: %s", AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) OpenInput(filename string) error {
//Create an empty Option object to pass to the open input
inputOptionsDict := NewDict([]Pair{})
inputOption := &Option{Key: "input_options", Val: inputOptionsDict}
if err := ctx.OpenInputWithOption(filename, inputOption); err != nil {
return err
}
return nil
}
func (ctx *FmtCtx) AddStreamWithCodeCtx(codeCtx *CodecCtx) (*Stream, error) {
var ost *Stream
// Create Video stream in output context
if ost = ctx.NewStream(codeCtx.Codec()); ost == nil {
return nil, fmt.Errorf("unable to create stream in context, filename: %s", ctx.Filename)
}
ost.DumpContexCodec(codeCtx)
if ctx.avCtx.oformat != nil && int(ctx.avCtx.oformat.flags&C.AVFMT_GLOBALHEADER) > 0 {
ost.SetCodecFlags()
}
return ost, nil
}
func (ctx *FmtCtx) WriteTrailer() {
C.av_write_trailer(ctx.avCtx)
}
func (ctx *FmtCtx) IsNoFile() bool {
return ctx.avCtx.oformat != nil && (ctx.avCtx.oformat.flags&C.AVFMT_NOFILE) != 0
}
func (ctx *FmtCtx) IsGlobalHeader() bool {
return ctx.avCtx != nil && ctx.avCtx.oformat != nil && (ctx.avCtx.oformat.flags&C.AVFMT_GLOBALHEADER) != 0
}
func (ctx *FmtCtx) WriteHeader() error {
cfilename := &(ctx.avCtx.filename[0])
// If NOFILE flag isn't set and we don't use custom IO, open it
if !ctx.IsNoFile() && !ctx.customPb {
if averr := C.avio_open(&ctx.avCtx.pb, cfilename, C.AVIO_FLAG_WRITE); averr < 0 {
return errors.New(fmt.Sprintf("Unable to open '%s': %s", ctx.Filename, AvError(int(averr))))
}
}
if averr := C.avformat_write_header(ctx.avCtx, nil); averr < 0 {
return errors.New(fmt.Sprintf("Unable to write header to '%s': %s", ctx.Filename, AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) WritePacket(p *Packet) error {
if averr := C.av_interleaved_write_frame(ctx.avCtx, &p.avPacket); averr < 0 {
return errors.New(fmt.Sprintf("Unable to write packet to '%s': %s", ctx.Filename, AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) WritePacketNoBuffer(p *Packet) error {
if averr := C.av_write_frame(ctx.avCtx, &p.avPacket); averr < 0 {
return errors.New(fmt.Sprintf("Unable to write packet to '%s': %s", ctx.Filename, AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) SetOformat(ofmt *OutputFmt) error {
if ofmt == nil {
return errors.New("'ofmt' is not initialized.")
}
if averr := C.avformat_alloc_output_context2(&ctx.avCtx, ofmt.avOutputFmt, nil, nil); averr < 0 {
return errors.New(fmt.Sprintf("Error creating output context: %s", AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) Dump() {
if ctx.ofmt == nil {
C.av_dump_format(ctx.avCtx, 0, &(ctx.avCtx.filename[0]), 0)
} else {
C.av_dump_format(ctx.avCtx, 0, &(ctx.avCtx.filename[0]), 1)
}
}
func (ctx *FmtCtx) DumpAv() {
fmt.Println("AVCTX:\n", ctx.avCtx, "\niformat:\n", ctx.avCtx.iformat)
fmt.Println("flags:", ctx.avCtx.flags)
}
func (ctx *FmtCtx) GetNextPacket() (*Packet, error) {
pkt := NewPacket()
for {
ret := int(C.av_read_frame(ctx.avCtx, &pkt.avPacket))
if AvErrno(ret) == syscall.EAGAIN {
time.Sleep(10000 * time.Microsecond)
continue
}
if ret == AVERROR_EOF {
return nil, io.EOF
}
if ret < 0 {
return nil, AvError(ret)
}
break
}
return pkt, nil
}
func (ctx *FmtCtx) GetNewPackets() chan *Packet {
yield := make(chan *Packet)
go func() {
for {
p := NewPacket()
if ret := C.av_read_frame(ctx.avCtx, &p.avPacket); int(ret) < 0 {
break
}
yield <- p
}
close(yield)
}()
return yield
}
func (ctx *FmtCtx) NewStream(c *Codec) *Stream {
var avCodec *C.struct_AVCodec = nil
if c != nil {
avCodec = c.avCodec
}
if st := C.avformat_new_stream(ctx.avCtx, avCodec); st == nil {
return nil
} else {
ctx.streams[int(st.index)] = &Stream{avStream: st}
Retain(ctx.streams[int(st.index)])
return ctx.streams[int(st.index)]
}
}
// Original structure member is called instead of len(this.streams)
// because there is no initialized Stream wrappers in input context.
func (ctx *FmtCtx) StreamsCnt() int {
return int(ctx.avCtx.nb_streams)
}
func (ctx *FmtCtx) GetStream(idx int) (*Stream, error) {
if idx > ctx.StreamsCnt()-1 || ctx.StreamsCnt() == 0 {
return nil, errors.New(fmt.Sprintf("Stream index '%d' is out of range. There is only '%d' streams.", idx, ctx.StreamsCnt()))
}
if _, ok := ctx.streams[idx]; !ok {
// create instance of Stream wrapper, when stream was initialized
// by demuxer. it means that ctx is an input context.
ctx.streams[idx] = &Stream{
avStream: C.gmf_get_stream(ctx.avCtx, C.int(idx)),
}
}
return ctx.streams[idx], nil
}
func (ctx *FmtCtx) GetBestStream(typ int32) (*Stream, error) {
idx := C.av_find_best_stream(ctx.avCtx, typ, -1, -1, nil, 0)
if int(idx) < 0 {
return nil, errors.New(fmt.Sprintf("stream type %d not found", typ))
}
return ctx.GetStream(int(idx))
}
func (ctx *FmtCtx) FindStreamInfo() error {
if averr := C.avformat_find_stream_info(ctx.avCtx, nil); averr < 0 {
return errors.New(fmt.Sprintf("unable to find stream info: %s", AvError(int(averr))))
}
return nil
}
func (ctx *FmtCtx) SetInputFormat(name string) error {
cname := C.CString(name)
defer C.free(unsafe.Pointer(cname))
if ctx.avCtx.iformat = (*C.struct_AVInputFormat)(C.av_find_input_format(cname)); ctx.avCtx.iformat == nil {
return errors.New("unable to find format for name: " + name)
}
if int(C.gmf_alloc_priv_data(ctx.avCtx, nil)) < 0 {
return errors.New("unable to allocate priv_data")
}
return nil
}
func (ctx *FmtCtx) Close() {
if ctx.ofmt == nil {
ctx.CloseInput()
} else {
ctx.CloseOutput()
}
}
func (ctx *FmtCtx) CloseInput() {
if ctx.avCtx != nil {
C.avformat_close_input(&ctx.avCtx)
}
}
func (ctx *FmtCtx) CloseOutput() {
if ctx.avCtx == nil {
return
}
if ctx.IsNoFile() {
return
}
if ctx.avCtx.pb != nil && !ctx.customPb {
C.avio_close(ctx.avCtx.pb)
}
}
func (ctx *FmtCtx) Free() {
ctx.Close()
if ctx.avCtx != nil {
C.avformat_free_context(ctx.avCtx)
}
}
func (ctx *FmtCtx) Duration() float64 {
return float64(ctx.avCtx.duration) / float64(AV_TIME_BASE)
}
// Total stream bitrate in bit/s
func (ctx *FmtCtx) BitRate() int64 {
return int64(ctx.avCtx.bit_rate)
}
func (ctx *FmtCtx) StartTime() int {
return int(ctx.avCtx.start_time)
}
func (ctx *FmtCtx) SetStartTime(val int) *FmtCtx {
ctx.avCtx.start_time = C.int64_t(val)
return ctx
}
func (ctx *FmtCtx) TsOffset(stime int) int {
// temp solution. see ffmpeg_opt.c:899
return (0 - stime)
}
func (ctx *FmtCtx) SetDebug(val int) *FmtCtx {
ctx.avCtx.debug = C.int(val)
return ctx
}
func (ctx *FmtCtx) SetFlag(flag int) *FmtCtx {
ctx.avCtx.flags |= C.int(flag)
return ctx
}
func (ctx *FmtCtx) SeekFile(ist *Stream, minTs, maxTs int64, flag int) error {
if ret := int(C.avformat_seek_file(ctx.avCtx, C.int(ist.Index()), C.int64_t(0), C.int64_t(minTs), C.int64_t(maxTs), C.int(flag))); ret < 0 {
return errors.New(fmt.Sprintf("Error creating output context: %s", AvError(ret)))
}
return nil
}
func (ctx *FmtCtx) SeekFrameAt(sec int64, streamIndex int) error {
ist, err := ctx.GetStream(streamIndex)
if err != nil {
return err
}
frameTs := Rescale(sec*1000, int64(ist.TimeBase().AVR().Den), int64(ist.TimeBase().AVR().Num)) / 1000
if err := ctx.SeekFile(ist, frameTs, frameTs, C.AVSEEK_FLAG_FRAME); err != nil {
return err
}
ist.CodecCtx().FlushBuffers()
return nil
}
func (ctx *FmtCtx) SetPb(val *AVIOContext) *FmtCtx {
ctx.avCtx.pb = val.avAVIOContext
ctx.customPb = true
return ctx
}
func (ctx *FmtCtx) GetSDPString() (sdp string) {
sdpChar := C.gmf_sprintf_sdp(ctx.avCtx)
defer C.free(unsafe.Pointer(sdpChar))
return C.GoString(sdpChar)
}
func (ctx *FmtCtx) WriteSDPFile(filename string) error {
file, err := os.Create(filename)
if err != nil {
return errors.New(fmt.Sprintf("Error open file:%s,error message:%s", filename, err))
}
defer file.Close()
file.WriteString(ctx.GetSDPString())
return nil
}
func (ctx *FmtCtx) Position() int {
return int(ctx.avCtx.pb.pos)
}
func (ctx *FmtCtx) SetProbeSize(v int64) {
ctx.avCtx.probesize = C.int64_t(v)
}
func (ctx *FmtCtx) GetProbeSize() int64 {
return int64(ctx.avCtx.probesize)
}
type OutputFmt struct {
Filename string
avOutputFmt *C.struct_AVOutputFormat
CgoMemoryManage
}
func FindOutputFmt(format string, filename string, mime string) *OutputFmt {
cformat := C.CString(format)
defer C.free(unsafe.Pointer(cformat))
cfilename := C.CString(filename)
defer C.free(unsafe.Pointer(cfilename))
cmime := C.CString(mime)
defer C.free(unsafe.Pointer(cmime))
var ofmt *C.struct_AVOutputFormat
if ofmt = C.av_guess_format(cformat, nil, cmime); ofmt == nil {
ofmt = C.av_guess_format(nil, cfilename, cmime)
}
if ofmt == nil {
return nil
}
return &OutputFmt{Filename: filename, avOutputFmt: ofmt}
}
func (f *OutputFmt) Free() {
fmt.Printf("(f *OutputFmt)Free()\n")
}
func (f *OutputFmt) Name() string {
return C.GoString(f.avOutputFmt.name)
}
func (f *OutputFmt) LongName() string {
return C.GoString(f.avOutputFmt.long_name)
}
func (f *OutputFmt) MimeType() string {
return C.GoString(f.avOutputFmt.mime_type)
}
func (f *OutputFmt) Infomation() string {
return f.Filename + ":" + f.Name() + "#" + f.LongName() + "#" + f.MimeType()
}