File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -135,8 +135,8 @@ defmodule Boombox do
135
135
136
136
@ typep procs :: % { pipeline: pid ( ) , supervisor: pid ( ) }
137
137
@ typep opts_map :: % {
138
- input: input ( ) ,
139
- output: output ( ) ,
138
+ input: input ( ) | stream_input ( ) ,
139
+ output: output ( ) | stream_output ( ) ,
140
140
parent: pid ( )
141
141
}
142
142
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ defmodule Boombox.InternalBin do
10
10
alias Membrane.Transcoder
11
11
12
12
@ type input ::
13
- Boombox.Bin . input ( )
13
+ Boombox . input ( )
14
14
| { :stream , pid ( ) , Boombox . in_stream_opts ( ) }
15
15
| :membrane_pad
16
16
17
17
@ type output ::
18
- Boombox.Bin . output ( )
18
+ Boombox . output ( )
19
19
| { :stream , pid ( ) , Boombox . out_stream_opts ( ) }
20
20
| :membrane_pad
21
21
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ defmodule Boombox.InternalBin.WebRTC do
100
100
end
101
101
102
102
@ spec link_output (
103
- Boombox . out_webrtc_opts ( ) ,
103
+ [ Boombox . transcoding_policy_opt ( ) ] ,
104
104
Boombox.InternalBin . track_builders ( ) ,
105
105
Membrane.ChildrenSpec . t ( ) ,
106
106
webrtc_sink_new_tracks ( ) ,
@@ -117,7 +117,7 @@ defmodule Boombox.InternalBin.WebRTC do
117
117
end
118
118
119
119
@ spec handle_output_tracks_negotiated (
120
- Boombox . out_webrtc_opts ( ) ,
120
+ [ Boombox . transcoding_policy_opt ( ) ] ,
121
121
Boombox.InternalBin . track_builders ( ) ,
122
122
Membrane.ChildrenSpec . t ( ) ,
123
123
webrtc_sink_new_tracks ( ) ,
You can’t perform that action at this time.
0 commit comments