Skip to content

Commit

Permalink
Make sure the proper metadata are used when stap_a RTP packet sets it…
Browse files Browse the repository at this point in the history
…s marker bit (#49)

* Make sure the proper metadata are used when stap_a RTP packet sets its marker bit

* bump version to 0.19.2

* bump version to 0.19.2 in readme

---------

Co-authored-by: Mateusz Front <[email protected]>
  • Loading branch information
varsill and mat-hek authored Jun 24, 2024
1 parent 69f3361 commit 84b53dd
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 @@ -24,7 +24,7 @@ The package can be installed by adding `membrane_rtp_h264_plugin` to your list o
```elixir
def deps do
[
{:membrane_rtp_h264_plugin, "~> 0.19.1"}
{:membrane_rtp_h264_plugin, "~> 0.19.2"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/rtp_h264/payloader.ex
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ defmodule Membrane.RTP.H264.Payloader do
stap_acc
| payloads: [buffer.payload | stap_acc.payloads],
byte_size: size,
metadata: stap_acc.metadata || buffer.metadata,
metadata: buffer.metadata,
pts: buffer.pts,
dts: buffer.dts,
nri: max(stap_acc.nri, nri),
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.RTP.H264.MixProject do
use Mix.Project

@version "0.19.1"
@version "0.19.2"
@github_url "https://github.com/membraneframework/membrane_rtp_h264_plugin"

def project do
Expand Down

0 comments on commit 84b53dd

Please sign in to comment.