Removed SSRC knowledge from ViEEncoder.
SSRC knowledge is contained withing VideoSendStream. That also means that debug recording is moved to VideoSendStream. I think that make sence since that allows debug recording with external encoder implementations one day. BUG=webrtc:5687 Review-Url: https://codereview.webrtc.org/1936503002 Cr-Commit-Position: refs/heads/master@{#12632}
This commit is contained in:
@ -290,10 +290,6 @@ TEST_F(TestVideoSenderWithMockEncoder, TestIntraRequests) {
|
||||
EXPECT_EQ(-1, sender_->IntraFrameRequest(3));
|
||||
ExpectIntraRequest(-1);
|
||||
AddFrame();
|
||||
|
||||
EXPECT_EQ(-1, sender_->IntraFrameRequest(-1));
|
||||
ExpectIntraRequest(-1);
|
||||
AddFrame();
|
||||
}
|
||||
|
||||
TEST_F(TestVideoSenderWithMockEncoder, TestIntraRequestsInternalCapture) {
|
||||
@ -313,7 +309,6 @@ TEST_F(TestVideoSenderWithMockEncoder, TestIntraRequestsInternalCapture) {
|
||||
EXPECT_EQ(0, sender_->IntraFrameRequest(2));
|
||||
// No requests expected since these indices are out of bounds.
|
||||
EXPECT_EQ(-1, sender_->IntraFrameRequest(3));
|
||||
EXPECT_EQ(-1, sender_->IntraFrameRequest(-1));
|
||||
}
|
||||
|
||||
TEST_F(TestVideoSenderWithMockEncoder, TestEncoderParametersForInternalSource) {
|
||||
|
||||
Reference in New Issue
Block a user