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

Unified Diff: media/base/android/mock_media_codec_bridge.cc

Issue 2132653002: MediaCodecLoop unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cl feedback Created 4 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
« no previous file with comments | « media/base/android/mock_media_codec_bridge.h ('k') | media/base/android/ndk_media_codec_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/mock_media_codec_bridge.cc
diff --git a/media/base/android/mock_media_codec_bridge.cc b/media/base/android/mock_media_codec_bridge.cc
new file mode 100644
index 0000000000000000000000000000000000000000..50ef75d85852e151ccc0a889b94ca1351e8015b3
--- /dev/null
+++ b/media/base/android/mock_media_codec_bridge.cc
@@ -0,0 +1,23 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/base/android/mock_media_codec_bridge.h"
+
+#include "media/base/subsample_entry.h"
+
+using ::testing::_;
+using ::testing::Return;
+
+namespace media {
+
+MockMediaCodecBridge::MockMediaCodecBridge() {
+ ON_CALL(*this, DequeueInputBuffer(_, _))
+ .WillByDefault(Return(MEDIA_CODEC_DEQUEUE_INPUT_AGAIN_LATER));
+ ON_CALL(*this, DequeueOutputBuffer(_, _, _, _, _, _, _))
+ .WillByDefault(Return(MEDIA_CODEC_DEQUEUE_OUTPUT_AGAIN_LATER));
+}
+
+MockMediaCodecBridge::~MockMediaCodecBridge() {}
+
+} // namespace media
« no previous file with comments | « media/base/android/mock_media_codec_bridge.h ('k') | media/base/android/ndk_media_codec_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698