-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathopener.go
79 lines (67 loc) · 2.21 KB
/
opener.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
package astilibav
import (
"github.com/pkg/errors"
"github.com/asticode/go-astiencoder"
"github.com/asticode/goav/avformat"
)
// Opener represents an object capable of opening inputs and outputs
type Opener struct {
c *astiencoder.Closer
}
// NewOpener creates a new Opener
func NewOpener(c *astiencoder.Closer) *Opener {
return &Opener{
c: c,
}
}
// OpenInput opens an input
func (o *Opener) OpenInput(name string, c astiencoder.JobInput) (ctxFormat *avformat.Context, err error) {
// Open input
if ret := avformat.AvformatOpenInput(&ctxFormat, c.URL, nil, nil); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avformat.AvformatOpenInput on input %s with conf %+v failed", name, c)
return
}
// Make sure the format ctx is properly closed
o.c.Add(func() error {
avformat.AvformatCloseInput(ctxFormat)
return nil
})
// Retrieve stream information
if ret := ctxFormat.AvformatFindStreamInfo(nil); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: ctxFormat.AvformatFindStreamInfo on input %s with conf %+v failed", name, c)
return
}
return
}
// OpenOutput opens an output
func (o *Opener) OpenOutput(name string, c astiencoder.JobOutput) (ctxFormat *avformat.Context, err error) {
// Alloc format context
if ret := avformat.AvformatAllocOutputContext2(&ctxFormat, nil, "", c.URL); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avformat.AvformatAllocOutputContext2 on output %s with conf %+v failed", name, c)
return
}
// Make sure the format ctx is properly closed
o.c.Add(func() error {
ctxFormat.AvformatFreeContext()
return nil
})
// This is a file
if ctxFormat.Flags()&avformat.AVFMT_NOFILE == 0 {
// Open
var ctxAvIO *avformat.AvIOContext
if ret := avformat.AvIOOpen(&ctxAvIO, c.URL, avformat.AVIO_FLAG_WRITE); ret < 0 {
err = errors.Wrapf(newAvError(ret), "astilibav: avformat.AvIOOpen on output %s with conf %+v failed", name, c)
return
}
// Set pb
ctxFormat.SetPb(ctxAvIO)
// Make sure the avio ctx is properly closed
o.c.Add(func() error {
if ret := avformat.AvIOClosep(&ctxAvIO); ret < 0 {
return errors.Wrapf(newAvError(ret), "astilibav: avformat.AvIOClosep on output %s with conf %+v failed", name, c)
}
return nil
})
}
return
}