Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small corrections for Bin and Dynamic Pads code examples #94

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion basic_pipeline_extension/02_Bin.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defmodule Basic.Bin do
spec = [
child(:input, %Basic.Elements.Source{location: options.input_filename})
|> child(:ordering_buffer, Basic.Elements.OrderingBuffer)
|> to(:depayloader, %Basic.Elements.Depayloader{packets_per_frame: 4})
|> child(:depayloader, %Basic.Elements.Depayloader{packets_per_frame: 4})
|> bin_output(:output)
]

Expand Down
2 changes: 1 addition & 1 deletion basic_pipeline_extension/03_DynamicPads.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The very first thing we need to do is to use the `def_input_pads` appropriately.
...
def_input_pad :input,
demand_unit: :buffers,
flow_control: :pull,
flow_control: :manual,
availability: :on_request,
accepted_format: %Basic.Formats.Frame{encoding: :utf8}
...
Expand Down