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

Unified Diff: chromecast/media/cma/test/media_component_device_feeder_for_test.cc

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK on posted task Created 5 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
Index: chromecast/media/cma/test/media_component_device_feeder_for_test.cc
diff --git a/chromecast/media/cma/test/media_component_device_feeder_for_test.cc b/chromecast/media/cma/test/media_component_device_feeder_for_test.cc
index 313bd8c0e5a97d2d9d41dfcf3949bc563de3a908..c64765fc799760f121e9047a05303eef347b55b2 100644
--- a/chromecast/media/cma/test/media_component_device_feeder_for_test.cc
+++ b/chromecast/media/cma/test/media_component_device_feeder_for_test.cc
@@ -16,13 +16,15 @@
#include "base/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "chromecast/media/base/decrypt_context.h"
-#include "chromecast/media/cma/backend/audio_pipeline_device.h"
-#include "chromecast/media/cma/backend/media_clock_device.h"
-#include "chromecast/media/cma/backend/media_pipeline_device.h"
-#include "chromecast/media/cma/backend/video_pipeline_device.h"
+#include "chromecast/media/cma/base/cast_decoder_buffer_impl.h"
#include "chromecast/media/cma/base/decoder_buffer_adapter.h"
-#include "chromecast/media/cma/base/decoder_buffer_base.h"
+#include "chromecast/media/cma/pipeline/frame_status_cb_impl.h"
+#include "chromecast/media/cma/pipeline/media_component_device_client_impl.h"
#include "chromecast/media/cma/test/frame_segmenter_for_test.h"
+#include "chromecast/public/media/audio_pipeline_device.h"
+#include "chromecast/public/media/cast_decoder_buffer.h"
+#include "chromecast/public/media/media_clock_device.h"
+#include "chromecast/public/media/video_pipeline_device.h"
#include "media/base/audio_decoder_config.h"
#include "media/base/bind_to_current_loop.h"
#include "media/base/buffers.h"
@@ -50,16 +52,14 @@ void MediaComponentDeviceFeederForTest::Initialize(
const base::Closure& eos_cb) {
eos_cb_ = eos_cb;
- MediaComponentDevice::Client client;
- client.eos_cb =
- base::Bind(&MediaComponentDeviceFeederForTest::OnEos,
- base::Unretained(this));
- media_component_device_->SetClient(client);
+ media_component_device_->SetClient(
+ new MediaComponentDeviceClientImpl(base::Bind(
+ &MediaComponentDeviceFeederForTest::OnEos, base::Unretained(this))));
bool success =
media_component_device_->SetState(MediaComponentDevice::kStateIdle);
ASSERT_TRUE(success);
- success = media_component_device_->SetStartPts(base::TimeDelta());
+ success = media_component_device_->SetStartPts(0);
ASSERT_TRUE(success);
success =
media_component_device_->SetState(MediaComponentDevice::kStatePaused);
@@ -79,8 +79,8 @@ void MediaComponentDeviceFeederForTest::Feed() {
scoped_refptr<DecoderBufferBase> buffer = frames_.front();
MediaComponentDevice::FrameStatus status = media_component_device_->PushFrame(
- scoped_refptr<DecryptContext>(), buffer,
- ::media::BindToCurrentLoop(
+ KEY_SYSTEM_NONE, new CastDecoderBufferImpl(buffer),
+ new FrameStatusCBImpl(
base::Bind(&MediaComponentDeviceFeederForTest::OnFramePushed,
base::Unretained(this))));
EXPECT_NE(status, MediaComponentDevice::kFrameFailed);

Powered by Google App Engine
This is Rietveld 408576698