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

Side by Side Diff: chromecast/media/base/cast_media_android.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 unified diff | Download patch
« no previous file with comments | « chromecast/media/base/BUILD.gn ('k') | chromecast/media/base/cast_media_default.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "chromecast/public/cast_media_shlib.h"
7 #include "chromecast/public/media/media_capabilities_shlib.h"
8 #include "chromecast/public/media_codec_support_shlib.h"
9
10 namespace chromecast {
11 namespace media {
12
13 void CastMediaShlib::Initialize(const std::vector<std::string>& argv) {
14 }
15
16 void CastMediaShlib::Finalize() {
17 }
18
19 VideoPlane* CastMediaShlib::GetVideoPlane() {
20 return nullptr;
21 }
22
23 MediaPipelineBackend* CastMediaShlib::CreateMediaPipelineBackend(
24 const MediaPipelineDeviceParams& params) {
25 return nullptr;
26 }
27
28 MediaCodecSupportShlib::CodecSupport MediaCodecSupportShlib::IsSupported(
29 const std::string& codec) {
30 return kDefault;
31 }
32
33 double CastMediaShlib::GetMediaClockRate() {
34 return 0.0;
35 }
36
37 double CastMediaShlib::MediaClockRatePrecision() {
38 return 0.0;
39 }
40
41 void CastMediaShlib::MediaClockRateRange(double* minimum_rate,
42 double* maximum_rate) {}
43
44 bool CastMediaShlib::SetMediaClockRate(double new_rate) {
45 return false;
46 }
47
48 bool CastMediaShlib::SupportsMediaClockRateChange() {
49 return false;
50 }
51
52 bool MediaCapabilitiesShlib::IsSupportedVideoConfig(VideoCodec codec,
53 VideoProfile profile,
54 int level) {
55 // TODO(sanfin): implement this.
56 LOG(INFO) << "IsSupportedVideoConfig not supported, returning true";
57 return true;
58 }
59
60 } // namespace media
61 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/media/base/BUILD.gn ('k') | chromecast/media/base/cast_media_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698