1
0
Fork 0
forked from External/mediamtx

formatprocessor: prevent generating empty H264/H265 RTP packets (#1505)

This commit is contained in:
Alessandro Ros 2023-02-23 14:46:26 +01:00 committed by GitHub
parent 2cffea6d51
commit bf691d1680
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 61 additions and 9 deletions

View file

@ -17,7 +17,7 @@ type Data interface {
// Processor allows to cleanup and normalize streams.
type Processor interface {
// cleanups and normalizes a data unit.
// clears and normalizes a data unit.
Process(Data, bool) error
}