Skip to content

Commit

Permalink
Merge pull request #28 from membraneframework/bump-rtp-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Noarkhh authored Jan 6, 2025
2 parents 376e08d + 6e083d8 commit 477154c
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 37 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The package can be installed by adding `membrane_rtp_vp8_plugin` to your list of
```elixir
def deps do
[
{:membrane_rtp_vp8_plugin, "~> 0.9.2"}
{:membrane_rtp_vp8_plugin, "~> 0.9.3"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane_rtp_vp8/depayloader.ex
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ defmodule Membrane.RTP.VP8.Depayloader do
{:ok, [buffer: {:output, %{state.first_buffer | payload: frame}}],
%State{state | frame_acc: acc, first_buffer: buffer}}

{:error, _} = error ->
{:error, _reason} = error ->
error
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane_rtp_vp8/payload_descriptor.ex
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ defmodule Membrane.RTP.VP8.PayloadDescriptor do
case {i, m} do
{1, 0} -> <<m::1, picture_id::7>>
{1, 1} -> <<m::1, picture_id::15>>
{0, _} -> <<>>
{0, _m} -> <<>>
end

tl0picidx = if l == 1, do: <<tl0picidx>>, else: <<>>
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.RTP.VP8.Plugin.Mixfile do
use Mix.Project

@version "0.9.2"
@version "0.9.3"
@github_url "https://github.com/membraneframework/membrane_rtp_vp8_plugin"

def project do
Expand Down Expand Up @@ -40,14 +40,14 @@ defmodule Membrane.RTP.VP8.Plugin.Mixfile do
[
{:membrane_core, "~> 1.0"},
{:membrane_vp8_format, "~> 0.5.0 or ~> 0.4.0"},
{:membrane_rtp_format, "~> 0.8.0"},
{:membrane_rtp_format, "~> 0.10.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:credo, ">= 0.0.0", only: :dev, runtime: false},

# Test deps
{:membrane_file_plugin, "~> 0.16.0", only: :test},
{:membrane_rtp_plugin, "~> 0.24.0", only: :test},
{:membrane_rtp_plugin, "~> 0.30.0", only: :test},
{:ex_libsrtp, ">= 0.0.0", only: :test},
{:membrane_pcap_plugin,
github: "membraneframework-labs/membrane_pcap_plugin", tag: "v0.9.0", only: :test},
Expand Down
Loading

0 comments on commit 477154c

Please sign in to comment.