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

Unified Diff: chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc

Issue 2577743002: [chromecast] Deletes libcast_media_1.0_default_core. (Closed)
Patch Set: moves backend files to cma/backend Created 4 years 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: chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc
diff --git a/chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc b/chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc
index a98d1f73740ed0d7f45659b345c06723936c1618..9b14fd77690e86d2851a96c25784d7d16a83aab5 100644
--- a/chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc
+++ b/chromecast/media/cma/backend/alsa/media_pipeline_backend_alsa.cc
@@ -8,7 +8,7 @@
#include "chromecast/base/task_runner_impl.h"
#include "chromecast/media/cma/backend/alsa/audio_decoder_alsa.h"
-#include "chromecast/media/cma/backend/video_decoder_default.h"
+#include "chromecast/media/cma/backend/alsa/video_decoder_alsa.h"
namespace chromecast {
namespace media {
@@ -35,7 +35,7 @@ MediaPipelineBackendAlsa::CreateVideoDecoder() {
DCHECK_EQ(kStateUninitialized, state_);
if (video_decoder_)
return nullptr;
- video_decoder_.reset(new VideoDecoderDefault());
+ video_decoder_.reset(new VideoDecoderAlsa());
return video_decoder_.get();
}

Powered by Google App Engine
This is Rietveld 408576698