We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0910b7 commit dd87597Copy full SHA for dd87597
basic_pipeline_extension/02_Bin.md
@@ -34,7 +34,7 @@ defmodule Basic.Bin do
34
spec = [
35
child(:input, %Basic.Elements.Source{location: options.input_filename})
36
|> child(:ordering_buffer, Basic.Elements.OrderingBuffer)
37
- |> to(:depayloader, %Basic.Elements.Depayloader{packets_per_frame: 4})
+ |> child(:depayloader, %Basic.Elements.Depayloader{packets_per_frame: 4})
38
|> bin_output(:output)
39
]
40
basic_pipeline_extension/03_DynamicPads.md
@@ -42,7 +42,7 @@ The very first thing we need to do is to use the `def_input_pads` appropriately.
42
...
43
def_input_pad :input,
44
demand_unit: :buffers,
45
- flow_control: :pull,
+ flow_control: :manual,
46
availability: :on_request,
47
accepted_format: %Basic.Formats.Frame{encoding: :utf8}
48
0 commit comments