From 1b900b13221b64ca6fcb6ea50bb6a64834ac4d3b Mon Sep 17 00:00:00 2001 From: philipel Date: Mon, 4 May 2020 17:27:28 +0200 Subject: [PATCH] Removed unused function EncodedFrame::SetEncodedSize. Bug: none Change-Id: I5b4ce351193198c14cf3c336f910eb1d910f034c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/174380 Reviewed-by: Niels Moller Commit-Queue: Philip Eliasson Cr-Commit-Position: refs/heads/master@{#31158} --- modules/video_coding/encoded_frame.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/video_coding/encoded_frame.h b/modules/video_coding/encoded_frame.h index 84b8c71e32..261aae77aa 100644 --- a/modules/video_coding/encoded_frame.h +++ b/modules/video_coding/encoded_frame.h @@ -34,14 +34,6 @@ class RTC_EXPORT VCMEncodedFrame : protected EncodedImage { _renderTimeMs = renderTimeMs; } - /** - * Set the encoded frame size - */ - void SetEncodedSize(uint32_t width, uint32_t height) { - _encodedWidth = width; - _encodedHeight = height; - } - void SetPlayoutDelay(PlayoutDelay playout_delay) { playout_delay_ = playout_delay; }