Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Unified Diff: remoting/codec/video_decoder_vpx.cc

Issue 1288063004: Simplify FrameConsumer interface. Remove FrameProducer interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/codec/video_decoder_vpx.cc
diff --git a/remoting/codec/video_decoder_vpx.cc b/remoting/codec/video_decoder_vpx.cc
index b14d88886cc688a7ec2d0cf510395622045140f9..a54c704ad1e0061b38b2eb29c0f2b84eea13e160 100644
--- a/remoting/codec/video_decoder_vpx.cc
+++ b/remoting/codec/video_decoder_vpx.cc
@@ -34,11 +34,6 @@ scoped_ptr<VideoDecoderVpx> VideoDecoderVpx::CreateForVP9() {
VideoDecoderVpx::~VideoDecoderVpx() {}
-void VideoDecoderVpx::Initialize(const webrtc::DesktopSize& source_size) {
- // Nothing to do here; the codec handles resizing internally, and returns
- // the source dimensions as part of the vpx_image_t.
-}
-
bool VideoDecoderVpx::DecodePacket(const VideoPacket& packet) {
// Pass the packet to the codec to process.
vpx_codec_err_t ret = vpx_codec_decode(

Powered by Google App Engine
This is Rietveld 408576698