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

Side by Side Diff: content/renderer/media/render_media_client.cc

Issue 2640113004: Introduce Dolby Vision video codec and Demuxer support (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/media/render_media_client.h" 5 #include "content/renderer/media/render_media_client.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/time/default_tick_clock.h" 9 #include "base/time/default_tick_clock.h"
10 #include "content/public/common/content_client.h" 10 #include "content/public/common/content_client.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 case media::kCodecVP8: 101 case media::kCodecVP8:
102 case media::kCodecVP9: 102 case media::kCodecVP9:
103 case media::kCodecTheora: 103 case media::kCodecTheora:
104 return true; 104 return true;
105 105
106 case media::kUnknownVideoCodec: 106 case media::kUnknownVideoCodec:
107 case media::kCodecVC1: 107 case media::kCodecVC1:
108 case media::kCodecMPEG2: 108 case media::kCodecMPEG2:
109 case media::kCodecMPEG4: 109 case media::kCodecMPEG4:
110 case media::kCodecHEVC: 110 case media::kCodecHEVC:
111 case media::kCodecDolbyVision:
wolenetz 2017/01/25 23:42:40 To be clear, is there no MediaClient on chromecast
erickung1 2017/02/03 18:18:31 cast has its own media::MediaClient implementation
111 return false; 112 return false;
112 } 113 }
113 114
114 NOTREACHED(); 115 NOTREACHED();
115 return false; 116 return false;
116 } 117 }
117 118
118 void RenderMediaClient::SetTickClockForTesting( 119 void RenderMediaClient::SetTickClockForTesting(
119 std::unique_ptr<base::TickClock> tick_clock) { 120 std::unique_ptr<base::TickClock> tick_clock) {
120 tick_clock_.swap(tick_clock); 121 tick_clock_.swap(tick_clock);
121 } 122 }
122 123
123 // This functions is for testing purpose only. The declaration in the 124 // This functions is for testing purpose only. The declaration in the
124 // header file is guarded by "#if defined(UNIT_TEST)" so that it can be used 125 // header file is guarded by "#if defined(UNIT_TEST)" so that it can be used
125 // by tests but not non-test code. However, this .cc file is compiled as part of 126 // by tests but not non-test code. However, this .cc file is compiled as part of
126 // "content" where "UNIT_TEST" is not defined. So we need to specify 127 // "content" where "UNIT_TEST" is not defined. So we need to specify
127 // "CONTENT_EXPORT" here again so that it is visible to tests. 128 // "CONTENT_EXPORT" here again so that it is visible to tests.
128 CONTENT_EXPORT RenderMediaClient* GetRenderMediaClientInstanceForTesting() { 129 CONTENT_EXPORT RenderMediaClient* GetRenderMediaClientInstanceForTesting() {
129 return g_render_media_client.Pointer(); 130 return g_render_media_client.Pointer();
130 } 131 }
131 132
132 } // namespace content 133 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698