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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10408003: Plumb extra_data() to VideoDecodeAccelerator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rev interface versino Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/examples/video_decode/video_decode.cc ('k') | ppapi/proxy/ppb_video_decoder_proxy.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 header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_StopCapture, 1103 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_StopCapture,
1104 ppapi::HostResource /* video_capture */) 1104 ppapi::HostResource /* video_capture */)
1105 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_Close, 1105 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoCapture_Close,
1106 ppapi::HostResource /* video_capture */) 1106 ppapi::HostResource /* video_capture */)
1107 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture0_1, 1107 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBVideoCapture_StartCapture0_1,
1108 ppapi::HostResource /* video_capture */, 1108 ppapi::HostResource /* video_capture */,
1109 PP_VideoCaptureDeviceInfo_Dev /* requested_info */, 1109 PP_VideoCaptureDeviceInfo_Dev /* requested_info */,
1110 uint32_t /* buffer_count */) 1110 uint32_t /* buffer_count */)
1111 1111
1112 // PPB_VideoDecoder. 1112 // PPB_VideoDecoder.
1113 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVideoDecoder_Create, 1113 IPC_SYNC_MESSAGE_ROUTED5_1(PpapiHostMsg_PPBVideoDecoder_Create,
1114 PP_Instance /* instance */, 1114 PP_Instance /* instance */,
1115 ppapi::HostResource /* context */, 1115 ppapi::HostResource /* context */,
1116 PP_VideoDecoder_Profile /* profile */, 1116 PP_VideoDecoder_Profile /* profile */,
1117 PP_Size /* frame_size */,
1118 std::vector<uint8_t> /* extra_data */,
1117 ppapi::HostResource /* result */) 1119 ppapi::HostResource /* result */)
1118 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode, 1120 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBVideoDecoder_Decode,
1119 ppapi::HostResource /* video_decoder */, 1121 ppapi::HostResource /* video_decoder */,
1120 ppapi::HostResource /* bitstream buffer */, 1122 ppapi::HostResource /* bitstream buffer */,
1121 int32 /* bitstream buffer id */, 1123 int32 /* bitstream buffer id */,
1122 int32 /* size of buffer */) 1124 int32 /* size of buffer */)
1123 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_AssignPictureBuffers, 1125 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_AssignPictureBuffers,
1124 ppapi::HostResource /* video_decoder */, 1126 ppapi::HostResource /* video_decoder */,
1125 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1127 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1126 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1128 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 // PPB_X509Certificate_Private 1328 // PPB_X509Certificate_Private
1327 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1328 std::vector<char> /* der */, 1330 std::vector<char> /* der */,
1329 bool /* succeeded */, 1331 bool /* succeeded */,
1330 ppapi::PPB_X509Certificate_Fields /* result */) 1332 ppapi::PPB_X509Certificate_Fields /* result */)
1331 1333
1332 // PPB_Font. 1334 // PPB_Font.
1333 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1334 std::string /* result */) 1336 std::string /* result */)
1335 #endif // !defined(OS_NACL) 1337 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/examples/video_decode/video_decode.cc ('k') | ppapi/proxy/ppb_video_decoder_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698