forked from notedit/gst
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gst_test.go
184 lines (123 loc) · 2.97 KB
/
gst_test.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
package gst
import (
"fmt"
"runtime"
"testing"
"time"
)
func PrintMemUsage() {
var m runtime.MemStats
runtime.ReadMemStats(&m)
// For info on each, see: https://golang.org/pkg/runtime/#MemStats
fmt.Printf("Alloc = %v MiB", bToMb(m.Alloc))
fmt.Printf("\tTotalAlloc = %v MiB", bToMb(m.TotalAlloc))
fmt.Printf("\tSys = %v MiB", bToMb(m.Sys))
fmt.Printf("\tNumGC = %v\n", m.NumGC)
}
func bToMb(b uint64) uint64 {
return b / 1024 / 1024
}
func TestPipeline(t *testing.T) {
PrintMemUsage()
pipeline, err := ParseLaunch("videotestsrc ! capsfilter name=filter ! autovideosink")
if err != nil {
t.Error("pipeline create error", err)
t.FailNow()
}
fmt.Println(pipeline.Name())
element := pipeline.GetByName("filter")
if element == nil {
t.Error("pipe find element error")
}
PrintMemUsage()
time.Sleep(1000000)
}
func TestAppsrc(t *testing.T) {
PrintMemUsage()
pipeline, err := ParseLaunch("appsrc name=mysource format=time is-live=true do-timestamp=true ! videoconvert ! autovideosink")
if err != nil {
t.Error("pipeline create error", err)
t.FailNow()
}
videoCap := CapsFromString("video/x-raw,format=RGB,width=320,height=240,bpp=24,depth=24")
element := pipeline.GetByName("mysource")
element.SetObject("caps", videoCap)
pipeline.SetState(StatePlaying)
time.Sleep(100000000)
i := 0
for {
if i > 10 {
break
}
data := make([]byte, 320*240*3)
err := element.PushBuffer(data)
if err != nil {
t.Error("push buffer error")
t.FailNow()
break
}
fmt.Println("push one")
i += 1
time.Sleep(50000000)
}
pipeline.SetState(StateNull)
pipeline = nil
element = nil
videoCap = nil
PrintMemUsage()
}
func TestAppsink(t *testing.T) {
PrintMemUsage()
pipeline, err := ParseLaunch("videotestsrc num-buffers=10 ! appsink name=sink")
if err != nil {
t.Error("pipeline create error", err)
t.FailNow()
}
element := pipeline.GetByName("sink")
pipeline.SetState(StatePlaying)
time.Sleep(1000000)
for {
sample, err := element.PullSample()
if err != nil {
if element.IsEOS() == true {
fmt.Println("eos")
return
} else {
fmt.Println(err)
continue
}
}
fmt.Println("got sample", sample.Duration)
}
pipeline.SetState(StateNull)
pipeline = nil
element = nil
PrintMemUsage()
time.Sleep(1000000)
}
func TestCheckPlugins(t *testing.T) {
error := CheckPlugins([]string{"flv", "rtmp"})
if error != nil {
t.Error("CheckPlugins", error)
t.FailNow()
}
}
func TestPipeline2Names(t *testing.T) {
PrintMemUsage()
pipeline, err := ParseLaunch("videotestsrc ! capsfilter name=filter1 ! capsfilter name=filter2! autovideosink")
if err != nil {
t.Error("pipeline create error", err)
t.FailNow()
}
fmt.Println(pipeline.Name())
element1 := pipeline.GetByName("filter1")
if element1 == nil {
t.Error("pipe find element error filter1")
}
element2 := pipeline.GetByName("filter2")
if element2 == nil {
t.Error("pipe find element error filter2")
}
PrintMemUsage()
time.Sleep(1000000)
}