Delete DecodedImageCallback::ReceivedDecodedFrame
This was a companion method to ReceivedDecodedReferenceFrame, deleted in https://webrtc-review.googlesource.com/c/src/+/133348. Tbr: kwiberg@webrtc.org # Mock class update Bug: webrtc:7408 Change-Id: I429f5f5c18f14c27136e82860297107a82c81d13 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/133571 Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27754}
This commit is contained in:
@ -175,13 +175,6 @@ void QualityAnalyzingVideoDecoder::DecoderCallback::Decoded(
|
||||
delegate_callback_->Decoded(decodedImage, decode_time_ms, qp);
|
||||
}
|
||||
|
||||
int32_t QualityAnalyzingVideoDecoder::DecoderCallback::ReceivedDecodedFrame(
|
||||
const uint64_t pictureId) {
|
||||
rtc::CritScope crit(&callback_lock_);
|
||||
RTC_DCHECK(delegate_callback_);
|
||||
return delegate_callback_->ReceivedDecodedFrame(pictureId);
|
||||
}
|
||||
|
||||
int32_t
|
||||
QualityAnalyzingVideoDecoder::DecoderCallback::IrrelevantSimulcastStreamDecoded(
|
||||
uint16_t frame_id,
|
||||
|
||||
@ -84,7 +84,6 @@ class QualityAnalyzingVideoDecoder : public VideoDecoder {
|
||||
void Decoded(VideoFrame& decodedImage,
|
||||
absl::optional<int32_t> decode_time_ms,
|
||||
absl::optional<uint8_t> qp) override;
|
||||
int32_t ReceivedDecodedFrame(uint64_t pictureId) override;
|
||||
|
||||
int32_t IrrelevantSimulcastStreamDecoded(uint16_t frame_id,
|
||||
int64_t timestamp_ms);
|
||||
|
||||
Reference in New Issue
Block a user