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

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 1639963002: AndroidVideoDecodeAccelerator can now render to a SurfaceView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 4 years, 10 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 | « no previous file | content/common/gpu/media/android_copying_backing_strategy.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 (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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 IPC_STRUCT_TRAITS_MEMBER(vendor_id) 219 IPC_STRUCT_TRAITS_MEMBER(vendor_id)
220 IPC_STRUCT_TRAITS_MEMBER(device_id) 220 IPC_STRUCT_TRAITS_MEMBER(device_id)
221 IPC_STRUCT_TRAITS_MEMBER(active) 221 IPC_STRUCT_TRAITS_MEMBER(active)
222 IPC_STRUCT_TRAITS_MEMBER(vendor_string) 222 IPC_STRUCT_TRAITS_MEMBER(vendor_string)
223 IPC_STRUCT_TRAITS_MEMBER(device_string) 223 IPC_STRUCT_TRAITS_MEMBER(device_string)
224 IPC_STRUCT_TRAITS_END() 224 IPC_STRUCT_TRAITS_END()
225 225
226 IPC_STRUCT_TRAITS_BEGIN(media::VideoDecodeAccelerator::Config) 226 IPC_STRUCT_TRAITS_BEGIN(media::VideoDecodeAccelerator::Config)
227 IPC_STRUCT_TRAITS_MEMBER(profile) 227 IPC_STRUCT_TRAITS_MEMBER(profile)
228 IPC_STRUCT_TRAITS_MEMBER(is_encrypted) 228 IPC_STRUCT_TRAITS_MEMBER(is_encrypted)
229 IPC_STRUCT_TRAITS_MEMBER(surface_id)
229 IPC_STRUCT_TRAITS_END() 230 IPC_STRUCT_TRAITS_END()
230 231
231 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile) 232 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorSupportedProfile)
232 IPC_STRUCT_TRAITS_MEMBER(profile) 233 IPC_STRUCT_TRAITS_MEMBER(profile)
233 IPC_STRUCT_TRAITS_MEMBER(max_resolution) 234 IPC_STRUCT_TRAITS_MEMBER(max_resolution)
234 IPC_STRUCT_TRAITS_MEMBER(min_resolution) 235 IPC_STRUCT_TRAITS_MEMBER(min_resolution)
235 IPC_STRUCT_TRAITS_END() 236 IPC_STRUCT_TRAITS_END()
236 237
237 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorCapabilities) 238 IPC_STRUCT_TRAITS_BEGIN(gpu::VideoDecodeAcceleratorCapabilities)
238 IPC_STRUCT_TRAITS_MEMBER(supported_profiles) 239 IPC_STRUCT_TRAITS_MEMBER(supported_profiles)
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy) 827 IPC_MESSAGE_ROUTED0(AcceleratedJpegDecoderMsg_Destroy)
827 828
828 //------------------------------------------------------------------------------ 829 //------------------------------------------------------------------------------
829 // Accelerated JPEG Decoder Host Messages 830 // Accelerated JPEG Decoder Host Messages
830 // These messages are sent from the GPU process to Browser process. 831 // These messages are sent from the GPU process to Browser process.
831 // 832 //
832 // Report decode status. 833 // Report decode status.
833 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck, 834 IPC_MESSAGE_ROUTED2(AcceleratedJpegDecoderHostMsg_DecodeAck,
834 int32_t, /* bitstream_buffer_id */ 835 int32_t, /* bitstream_buffer_id */
835 media::JpegDecodeAccelerator::Error /* error */) 836 media::JpegDecodeAccelerator::Error /* error */)
OLDNEW
« no previous file with comments | « no previous file | content/common/gpu/media/android_copying_backing_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698