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

Rename RTP.TCP.Depayloader to RTP.RTSP.Decapsulator #162

Merged
merged 7 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 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_plugin` to your list of dep
```elixir
def deps do
[
{:membrane_rtp_plugin, "~> 0.25.0"},
{:membrane_rtp_plugin, "~> 0.26.0"},
{:ex_libsrtp, ">= 0.0.0"} # required only if SRTP/SRTCP support is needed
]
end
Expand Down
5 changes: 3 additions & 2 deletions lib/membrane/rtp/tcp_depayloader.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
defmodule Membrane.RTP.TCP.Depayloader do
defmodule Membrane.RTP.RTSP.Depayloader do
Copy link
Contributor

@wkozyra95 wkozyra95 Feb 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR name does not match the change (and file name)

@moduledoc """
This element provides functionality of depayloading RTP Packets received by TCP and redirecting
RTSP messages received in the same stream. The encapsulation is described in RFC 7826 Section 14.
RTSP messages received in the same stream established with RTSP. The encapsulation is described
in RFC 7826 Section 14.

Encapsulated packets interleaved in the stream will have the following structure:
["$" = 36 :: 1 byte][Channel id :: 1 byte][Length :: 2 bytes][packet :: <Length> bytes]
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.Plugin.MixProject do
use Mix.Project

@version "0.25.0"
@version "0.26.0"
@github_url "https://github.com/membraneframework/membrane_rtp_plugin"

def project do
Expand Down