Index: media/cast/receiver/video_decoder.cc |
diff --git a/media/cast/video_receiver/video_decoder.cc b/media/cast/receiver/video_decoder.cc |
similarity index 98% |
rename from media/cast/video_receiver/video_decoder.cc |
rename to media/cast/receiver/video_decoder.cc |
index c2d256268f645b387e3788c4d843851128d14b45..41c97e15a7bbdfafb1e2d45851fcca35ace740cb 100644 |
--- a/media/cast/video_receiver/video_decoder.cc |
+++ b/media/cast/receiver/video_decoder.cc |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "media/cast/video_receiver/video_decoder.h" |
+#include "media/cast/receiver/video_decoder.h" |
#include "base/bind.h" |
#include "base/bind_helpers.h" |
@@ -209,9 +209,9 @@ class VideoDecoder::FakeImpl : public VideoDecoder::ImplBase { |
VideoDecoder::VideoDecoder( |
const scoped_refptr<CastEnvironment>& cast_environment, |
- const FrameReceiverConfig& video_config) |
+ transport::VideoCodec codec) |
: cast_environment_(cast_environment) { |
- switch (video_config.codec.video) { |
+ switch (codec) { |
#ifndef OFFICIAL_BUILD |
case transport::kFakeSoftwareVideo: |
impl_ = new FakeImpl(cast_environment); |