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

Side by Side Diff: ui/gfx/buffer_format_util.cc

Issue 1316493004: Add support for converting I420 software frames into NV12 hardware frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snapshot
Patch Set: Created 5 years, 3 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 | « media/video/gpu_memory_buffer_video_frame_pool_unittest.cc ('k') | ui/gfx/buffer_types.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ui/gfx/buffer_format_util.h" 5 #include "ui/gfx/buffer_format_util.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace gfx { 9 namespace gfx {
10 10
11 size_t NumberOfPlanesForBufferFormat(BufferFormat format) { 11 size_t NumberOfPlanesForBufferFormat(BufferFormat format) {
12 switch (format) { 12 switch (format) {
13 case BufferFormat::ATC: 13 case BufferFormat::ATC:
14 case BufferFormat::ATCIA: 14 case BufferFormat::ATCIA:
15 case BufferFormat::DXT1: 15 case BufferFormat::DXT1:
16 case BufferFormat::DXT5: 16 case BufferFormat::DXT5:
17 case BufferFormat::ETC1: 17 case BufferFormat::ETC1:
18 case BufferFormat::R_8: 18 case BufferFormat::R_8:
19 case BufferFormat::RGBA_4444: 19 case BufferFormat::RGBA_4444:
20 case BufferFormat::RGBA_8888: 20 case BufferFormat::RGBA_8888:
21 case BufferFormat::BGRX_8888: 21 case BufferFormat::BGRX_8888:
22 case BufferFormat::BGRA_8888: 22 case BufferFormat::BGRA_8888:
23 case BufferFormat::UYVY_422: 23 case BufferFormat::UYVY_422:
24 return 1; 24 return 1;
25 case BufferFormat::YUV_420_BIPLANAR:
26 return 2;
25 case BufferFormat::YUV_420: 27 case BufferFormat::YUV_420:
26 return 3; 28 return 3;
27 } 29 }
28 NOTREACHED(); 30 NOTREACHED();
29 return 0; 31 return 0;
30 } 32 }
31 33
32 } // namespace gfx 34 } // namespace gfx
OLDNEW
« no previous file with comments | « media/video/gpu_memory_buffer_video_frame_pool_unittest.cc ('k') | ui/gfx/buffer_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698