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

Side by Side Diff: gpu/config/gpu_info.h

Issue 2640113004: Introduce Dolby Vision video codec and Demuxer support (Closed)
Patch Set: fix build break on Android Created 3 years, 9 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
« no previous file with comments | « content/renderer/media/render_media_client.cc ('k') | gpu/ipc/common/gpu_info.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef GPU_CONFIG_GPU_INFO_H_ 5 #ifndef GPU_CONFIG_GPU_INFO_H_
6 #define GPU_CONFIG_GPU_INFO_H_ 6 #define GPU_CONFIG_GPU_INFO_H_
7 7
8 // Provides access to the GPU information for the system 8 // Provides access to the GPU information for the system
9 // on which chrome is currently running. 9 // on which chrome is currently running.
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 H264PROFILE_STEREOHIGH, 55 H264PROFILE_STEREOHIGH,
56 H264PROFILE_MULTIVIEWHIGH, 56 H264PROFILE_MULTIVIEWHIGH,
57 VP8PROFILE_ANY, 57 VP8PROFILE_ANY,
58 VP9PROFILE_PROFILE0, 58 VP9PROFILE_PROFILE0,
59 VP9PROFILE_PROFILE1, 59 VP9PROFILE_PROFILE1,
60 VP9PROFILE_PROFILE2, 60 VP9PROFILE_PROFILE2,
61 VP9PROFILE_PROFILE3, 61 VP9PROFILE_PROFILE3,
62 HEVCPROFILE_MAIN, 62 HEVCPROFILE_MAIN,
63 HEVCPROFILE_MAIN10, 63 HEVCPROFILE_MAIN10,
64 HEVCPROFILE_MAIN_STILL_PICTURE, 64 HEVCPROFILE_MAIN_STILL_PICTURE,
65 VIDEO_CODEC_PROFILE_MAX = HEVCPROFILE_MAIN_STILL_PICTURE, 65 DOLBYVISION_PROFILE0,
66 DOLBYVISION_PROFILE4,
67 DOLBYVISION_PROFILE5,
68 DOLBYVISION_PROFILE7,
69 VIDEO_CODEC_PROFILE_MAX = DOLBYVISION_PROFILE7,
66 }; 70 };
67 71
68 // Specification of a decoding profile supported by a hardware decoder. 72 // Specification of a decoding profile supported by a hardware decoder.
69 struct GPU_EXPORT VideoDecodeAcceleratorSupportedProfile { 73 struct GPU_EXPORT VideoDecodeAcceleratorSupportedProfile {
70 VideoCodecProfile profile; 74 VideoCodecProfile profile;
71 gfx::Size max_resolution; 75 gfx::Size max_resolution;
72 gfx::Size min_resolution; 76 gfx::Size min_resolution;
73 bool encrypted_only; 77 bool encrypted_only;
74 }; 78 };
75 79
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 virtual ~Enumerator() {} 281 virtual ~Enumerator() {}
278 }; 282 };
279 283
280 // Outputs the fields in this structure to the provided enumerator. 284 // Outputs the fields in this structure to the provided enumerator.
281 void EnumerateFields(Enumerator* enumerator) const; 285 void EnumerateFields(Enumerator* enumerator) const;
282 }; 286 };
283 287
284 } // namespace gpu 288 } // namespace gpu
285 289
286 #endif // GPU_CONFIG_GPU_INFO_H_ 290 #endif // GPU_CONFIG_GPU_INFO_H_
OLDNEW
« no previous file with comments | « content/renderer/media/render_media_client.cc ('k') | gpu/ipc/common/gpu_info.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698