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

Unified Diff: media/cast/test/utility/default_config.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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
« no previous file with comments | « media/cast/test/simulator.cc ('k') | media/cast/test/utility/in_process_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/utility/default_config.cc
diff --git a/media/cast/test/utility/default_config.cc b/media/cast/test/utility/default_config.cc
index a0155c43eda822e3d2056fb879527e56eb978d8a..6743146b7072c03399e00342f473a912d1cab965 100644
--- a/media/cast/test/utility/default_config.cc
+++ b/media/cast/test/utility/default_config.cc
@@ -5,7 +5,7 @@
#include "media/cast/test/utility/default_config.h"
#include "base/bind.h"
-#include "media/cast/transport/cast_transport_config.h"
+#include "media/cast/net/cast_transport_config.h"
namespace {
@@ -35,7 +35,7 @@ FrameReceiverConfig GetDefaultAudioReceiverConfig() {
config.frequency = 48000;
config.channels = 2;
config.max_frame_rate = 100; // 10ms of signal per frame
- config.codec = media::cast::transport::CODEC_AUDIO_OPUS;
+ config.codec = media::cast::CODEC_AUDIO_OPUS;
return config;
}
@@ -49,7 +49,7 @@ FrameReceiverConfig GetDefaultVideoReceiverConfig() {
config.frequency = kVideoFrequency;
config.channels = 1;
config.max_frame_rate = kDefaultMaxFrameRate;
- config.codec = media::cast::transport::CODEC_VIDEO_VP8;
+ config.codec = media::cast::CODEC_VIDEO_VP8;
return config;
}
« no previous file with comments | « media/cast/test/simulator.cc ('k') | media/cast/test/utility/in_process_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698