Index: content/renderer/media/rtc_video_decoder.h |
diff --git a/content/renderer/media/rtc_video_decoder.h b/content/renderer/media/rtc_video_decoder.h |
index 0c8e45beda3a8f53a83a05d759bdfa40f6faadcb..bbc294afc8ebeb52d93d7addca5bdc4883c7d719 100644 |
--- a/content/renderer/media/rtc_video_decoder.h |
+++ b/content/renderer/media/rtc_video_decoder.h |
@@ -91,15 +91,11 @@ class CONTENT_EXPORT RTCVideoDecoder |
struct BufferData { |
BufferData(int32 bitstream_buffer_id, |
uint32_t timestamp, |
- int width, |
- int height, |
size_t size); |
BufferData(); |
~BufferData(); |
int32 bitstream_buffer_id; |
uint32_t timestamp; // in 90KHz |
- uint32_t width; |
- uint32_t height; |
size_t size; // buffer size |
}; |
@@ -139,8 +135,6 @@ class CONTENT_EXPORT RTCVideoDecoder |
const media::Picture& picture, |
const media::PictureBuffer& pb, |
uint32_t timestamp, |
- uint32_t width, |
- uint32_t height, |
size_t size); |
// Resets VDA. |
@@ -177,10 +171,7 @@ class CONTENT_EXPORT RTCVideoDecoder |
void RecordBufferData(const BufferData& buffer_data); |
// Gets the buffer metadata from |input_buffer_data_|. |
void GetBufferData(int32 bitstream_buffer_id, |
- uint32_t* timestamp, |
- uint32_t* width, |
- uint32_t* height, |
- size_t* size); |
+ uint32_t* timestamp); |
// Records the result of InitDecode to UMA and returns |status|. |
int32_t RecordInitDecodeUMA(int32_t status); |