mirror of
https://github.com/livekit/livekit.git
synced 2026-08-29 03:18:47 +00:00
Cosmetic. While thinking through how to structure probing better, noticing small things here and there. Cleaning up and making some small PRs along the way.
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
// Copyright 2023 LiveKit, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package bwe
|
|
|
|
import (
|
|
"github.com/pion/rtcp"
|
|
)
|
|
|
|
type NullBWE struct {
|
|
}
|
|
|
|
func (n *NullBWE) SetBWEListener(_bweListener BWEListener) {}
|
|
|
|
func (n *NullBWE) Reset() {}
|
|
|
|
func (n *NullBWE) Stop() {}
|
|
|
|
func (n *NullBWE) RecordPacketSendAndGetSequenceNumber(_atMicro int64, _size int, _isRTX bool) uint16 {
|
|
return 0
|
|
}
|
|
|
|
func (n *NullBWE) HandleREMB(
|
|
_receivedEstimate int64,
|
|
_isProbeFinalizing bool,
|
|
_expectedBandwidthUsage int64,
|
|
_sentPackets uint32,
|
|
_repeatedNacks uint32,
|
|
) {
|
|
}
|
|
|
|
func (n *NullBWE) HandleTWCCFeedback(_report *rtcp.TransportLayerCC) {}
|
|
|
|
func (n *NullBWE) ProbingStart(_expectedBandwidthUsage int64) {}
|
|
|
|
func (n *NullBWE) ProbingEnd(_isNotFailing bool, _isGoalReached bool) {}
|
|
|
|
func (n *NullBWE) GetProbeStatus() (bool, ChannelTrend, int64, int64) {
|
|
return false, ChannelTrendNeutral, 0, 0
|
|
}
|
|
|
|
// ------------------------------------------------
|