Scalable video coding (SVC).

This commit is contained in:
Juliusz Chroboczek
2021-05-11 15:28:30 +02:00
parent 7590588a54
commit 6f9d7fc306
13 changed files with 660 additions and 39 deletions
+2 -2
View File
@@ -618,6 +618,6 @@ func (conn *diskConn) initWriter(width, height uint32) error {
return nil
}
func (t *diskTrack) GetMaxBitrate() uint64 {
return ^uint64(0)
func (t *diskTrack) GetMaxBitrate() (uint64, int) {
return ^uint64(0), -1
}