| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ppapi/cpp/dev/video_decoder_dev.h" | 5 #include "ppapi/cpp/dev/video_decoder_dev.h" |
| 6 | 6 |
| 7 #include "ppapi/c/dev/ppb_video_decoder_dev.h" | 7 #include "ppapi/c/dev/ppb_video_decoder_dev.h" |
| 8 #include "ppapi/c/dev/ppp_video_decoder_dev.h" | 8 #include "ppapi/c/dev/ppp_video_decoder_dev.h" |
| 9 #include "ppapi/c/pp_errors.h" | 9 #include "ppapi/c/pp_errors.h" |
| 10 #include "ppapi/cpp/dev/context_3d_dev.h" | 10 #include "ppapi/cpp/dev/context_3d_dev.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 int32_t VideoDecoder_Dev::Initialize(const PP_VideoConfigElement* config, | 40 int32_t VideoDecoder_Dev::Initialize(const PP_VideoConfigElement* config, |
| 41 const Context3D_Dev& context, | 41 const Context3D_Dev& context, |
| 42 CompletionCallback callback) { | 42 CompletionCallback callback) { |
| 43 if (!has_interface<PPB_VideoDecoder_Dev>()) | 43 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 44 return callback.MayForce(PP_ERROR_NOINTERFACE); | 44 return callback.MayForce(PP_ERROR_NOINTERFACE); |
| 45 return get_interface<PPB_VideoDecoder_Dev>()->Initialize( | 45 return get_interface<PPB_VideoDecoder_Dev>()->Initialize( |
| 46 pp_resource(), context.pp_resource(), config, | 46 pp_resource(), context.pp_resource(), config, |
| 47 callback.pp_completion_callback()); | 47 callback.pp_completion_callback()); |
| 48 } | 48 } |
| 49 | 49 |
| 50 void VideoDecoder_Dev::AssignGLESBuffers( | 50 void VideoDecoder_Dev::AssignPictureBuffers( |
| 51 const std::vector<PP_GLESBuffer_Dev>& buffers) { | 51 const std::vector<PP_PictureBuffer_Dev>& buffers) { |
| 52 if (!has_interface<PPB_VideoDecoder_Dev>() || !pp_resource()) | 52 if (!has_interface<PPB_VideoDecoder_Dev>() || !pp_resource()) |
| 53 return; | 53 return; |
| 54 get_interface<PPB_VideoDecoder_Dev>()->AssignGLESBuffers( | 54 get_interface<PPB_VideoDecoder_Dev>()->AssignPictureBuffers( |
| 55 pp_resource(), buffers.size(), &buffers[0]); | 55 pp_resource(), buffers.size(), &buffers[0]); |
| 56 } | 56 } |
| 57 | 57 |
| 58 int32_t VideoDecoder_Dev::Decode( | 58 int32_t VideoDecoder_Dev::Decode( |
| 59 const PP_VideoBitstreamBuffer_Dev& bitstream_buffer, | 59 const PP_VideoBitstreamBuffer_Dev& bitstream_buffer, |
| 60 CompletionCallback callback) { | 60 CompletionCallback callback) { |
| 61 if (!has_interface<PPB_VideoDecoder_Dev>()) | 61 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 62 return callback.MayForce(PP_ERROR_NOINTERFACE); | 62 return callback.MayForce(PP_ERROR_NOINTERFACE); |
| 63 return get_interface<PPB_VideoDecoder_Dev>()->Decode( | 63 return get_interface<PPB_VideoDecoder_Dev>()->Decode( |
| 64 pp_resource(), &bitstream_buffer, callback.pp_completion_callback()); | 64 pp_resource(), &bitstream_buffer, callback.pp_completion_callback()); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 79 } | 79 } |
| 80 | 80 |
| 81 int32_t VideoDecoder_Dev::Reset(CompletionCallback callback) { | 81 int32_t VideoDecoder_Dev::Reset(CompletionCallback callback) { |
| 82 if (!has_interface<PPB_VideoDecoder_Dev>()) | 82 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 83 return callback.MayForce(PP_ERROR_NOINTERFACE); | 83 return callback.MayForce(PP_ERROR_NOINTERFACE); |
| 84 return get_interface<PPB_VideoDecoder_Dev>()->Reset( | 84 return get_interface<PPB_VideoDecoder_Dev>()->Reset( |
| 85 pp_resource(), callback.pp_completion_callback()); | 85 pp_resource(), callback.pp_completion_callback()); |
| 86 } | 86 } |
| 87 | 87 |
| 88 } // namespace pp | 88 } // namespace pp |
| OLD | NEW |