Skip to content

Commit

Permalink
Make sure try_connect/1 is scheduled on a dirty scheduler. Fix a dirt…
Browse files Browse the repository at this point in the history
…y scheduler configuration for write_video_frame/5
  • Loading branch information
varsill committed Feb 19, 2024
1 parent e1fef39 commit 0d43bc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The package can be installed by adding `membrane_rtmp_plugin` to your list of de
```elixir
def deps do
[
{:membrane_rtmp_plugin, "~> 0.22.0"}
{:membrane_rtmp_plugin, "~> 0.22.1"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion c_src/membrane_rtmp_plugin/sink/rtmp_sink.spec.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ spec init_audio_stream(state, channels :: int, sample_rate :: int, aac_config ::
spec write_audio_frame(state, frame :: payload, pts :: int64) ::
{:ok :: label, state} | {:error :: label, reason :: string}

dirty :io, write_video_frame: 4, write_audio_frame: 3
dirty :io, write_video_frame: 5, write_audio_frame: 3, try_connect: 1
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.RTMP.Mixfile do
use Mix.Project

@version "0.22.0"
@version "0.22.1"
@github_url "https://github.com/membraneframework/membrane_rtmp_plugin"

def project do
Expand Down

0 comments on commit 0d43bc2

Please sign in to comment.