Skip to content

Commit

Permalink
Auto merge of #268 - troy/rtmp, r=<dry>
Browse files Browse the repository at this point in the history
rtmp cleanup
some work towards cleaning up the rtmp implementation

CLOUD-32

Requested-by: TroyKomodo <[email protected]>
  • Loading branch information
scuffle-brawl[bot] authored Feb 11, 2025
2 parents 5f136ca + 3e3b195 commit 864d28f
Show file tree
Hide file tree
Showing 52 changed files with 1,953 additions and 1,961 deletions.
8 changes: 8 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,17 @@ scuffle-mp4 = { path = "crates/mp4", version = "0.1.0" }
scuffle-rtmp = { path = "crates/rtmp", version = "0.1.0" }
scuffle-transmuxer = { path = "crates/transmuxer", version = "0.1.0" }
scuffle-workspace-hack = { version = "0.1.0" }
scuffle-rtmp = { path = "crates/rtmp", version = "0.0.1" }

<<<<<<< HEAD
=======
# To be renamed:
# scuffle-h264 = { path = "crates/h264", version = "0.0.1" }
# scuffle-h265 = { path = "crates/h265", version = "0.0.1" }
# scuffle-mp4 = { path = "crates/mp4", version = "0.0.1" }
# scuffle-transmuxer = { path = "crates/transmuxer", version = "0.0.1" }

>>>>>>> 15a467c (rtmp impl)
[profile.release-debug]
inherits = "release"
debug = true
Expand Down
8 changes: 4 additions & 4 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ component_management:
name: scuffle-pprof
paths:
- crates/pprof/**
# - component_id: scuffle-rtmp
# name: scuffle-rtmp
# paths:
# - crates/rtmp/**
- component_id: scuffle-rtmp
name: scuffle-rtmp
paths:
- crates/rtmp/**
- component_id: scuffle-settings
name: scuffle-settings
paths:
Expand Down
1 change: 1 addition & 0 deletions crates/rtmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ tokio = { version = "1.36", features = ["io-util", "sync"] }
futures = "0.3"
async-trait = "0.1"
tracing = "0.1"
thiserror = "2.0"

scuffle-amf0.workspace = true
scuffle-workspace-hack.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/rtmp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

---

A crate for handling RTMP server connections.
A pure Rust implementation of the RTMP protocol.

## Status

Expand Down
42 changes: 0 additions & 42 deletions crates/rtmp/src/channels/mod.rs

This file was deleted.

Loading

0 comments on commit 864d28f

Please sign in to comment.