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

Unified Diff: chromecast/media/base/cast_media_dummy.cc

Issue 2577743002: [chromecast] Deletes libcast_media_1.0_default_core. (Closed)
Patch Set: rebase + simplify libcast_media target 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
« no previous file with comments | « chromecast/media/base/cast_media_default.cc ('k') | chromecast/media/cma/backend/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/base/cast_media_dummy.cc
diff --git a/chromecast/media/base/cast_media_dummy.cc b/chromecast/media/base/cast_media_dummy.cc
deleted file mode 100644
index d991e0dc6b54a6058f1bf4b59fd4c8a275a6c6ac..0000000000000000000000000000000000000000
--- a/chromecast/media/base/cast_media_dummy.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2015 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 "chromecast/public/cast_media_shlib.h"
-#include "chromecast/public/media/media_capabilities_shlib.h"
-#include "chromecast/public/media_codec_support_shlib.h"
-
-namespace chromecast {
-namespace media {
-
-void CastMediaShlib::Initialize(const std::vector<std::string>& argv) {
-}
-
-void CastMediaShlib::Finalize() {
-}
-
-VideoPlane* CastMediaShlib::GetVideoPlane() {
- return nullptr;
-}
-
-MediaPipelineBackend* CastMediaShlib::CreateMediaPipelineBackend(
- const MediaPipelineDeviceParams& params) {
- return nullptr;
-}
-
-MediaCodecSupportShlib::CodecSupport MediaCodecSupportShlib::IsSupported(
- const std::string& codec) {
- return kDefault;
-}
-
-double CastMediaShlib::GetMediaClockRate() {
- return 0.0;
-}
-
-double CastMediaShlib::MediaClockRatePrecision() {
- return 0.0;
-}
-
-void CastMediaShlib::MediaClockRateRange(double* minimum_rate,
- double* maximum_rate) {}
-
-bool CastMediaShlib::SetMediaClockRate(double new_rate) {
- return false;
-}
-
-bool CastMediaShlib::SupportsMediaClockRateChange() {
- return false;
-}
-
-bool MediaCapabilitiesShlib::IsSupportedVideoConfig(VideoCodec codec,
- VideoProfile profile,
- int level) {
- return (codec == kCodecH264 || codec == kCodecVP8);
-}
-
-} // namespace media
-} // namespace chromecast
« no previous file with comments | « chromecast/media/base/cast_media_default.cc ('k') | chromecast/media/cma/backend/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698