7 lines
215 B
Rust
7 lines
215 B
Rust
// [TSM.ID].[11031972] -- All Rights Reserved. Proprietary & Confidential.
|
|
// Representasi aliran data media (Pengganti Track)
|
|
pub struct Stream {
|
|
pub id: String,
|
|
pub codec: String, // e.g., "VP9", "Opus"
|
|
}
|