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
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
}