mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-20 22:21:01 +00:00
8 lines
86 B
Go
8 lines
86 B
Go
|
package unit
|
||
|
|
||
|
// LPCM is a LPCM data unit.
|
||
|
type LPCM struct {
|
||
|
Base
|
||
|
Samples []byte
|
||
|
}
|