1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/cpp/dev/video_decoder_dev.h"
#include "ppapi/c/dev/ppb_video_decoder_dev.h"
#include "ppapi/c/dev/ppp_video_decoder_dev.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/cpp/dev/context_3d_dev.h"
#include "ppapi/cpp/graphics_3d.h"
#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/module.h"
#include "ppapi/cpp/module_impl.h"
namespace pp {
namespace {
template <> const char* interface_name<PPB_VideoDecoder_Dev>() {
return PPB_VIDEODECODER_DEV_INTERFACE;
}
} // namespace
VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance,
const Context3D_Dev& context,
PP_VideoDecoder_Profile profile) {
if (!has_interface<PPB_VideoDecoder_Dev>())
return;
PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create(
instance->pp_instance(), context.pp_resource(), profile));
}
VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance,
const Graphics3D& context,
PP_VideoDecoder_Profile profile) {
if (!has_interface<PPB_VideoDecoder_Dev>())
return;
PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create(
instance->pp_instance(), context.pp_resource(), profile));
}
VideoDecoder_Dev::VideoDecoder_Dev(PP_Resource resource) : Resource(resource) {
}
VideoDecoder_Dev::~VideoDecoder_Dev() {
get_interface<PPB_VideoDecoder_Dev>()->Destroy(pp_resource());
}
void VideoDecoder_Dev::AssignPictureBuffers(
const std::vector<PP_PictureBuffer_Dev>& buffers) {
if (!has_interface<PPB_VideoDecoder_Dev>() || !pp_resource())
return;
get_interface<PPB_VideoDecoder_Dev>()->AssignPictureBuffers(
pp_resource(), buffers.size(), &buffers[0]);
}
int32_t VideoDecoder_Dev::Decode(
const PP_VideoBitstreamBuffer_Dev& bitstream_buffer,
CompletionCallback callback) {
if (!has_interface<PPB_VideoDecoder_Dev>())
return callback.MayForce(PP_ERROR_NOINTERFACE);
return get_interface<PPB_VideoDecoder_Dev>()->Decode(
pp_resource(), &bitstream_buffer, callback.pp_completion_callback());
}
void VideoDecoder_Dev::ReusePictureBuffer(int32_t picture_buffer_id) {
if (!has_interface<PPB_VideoDecoder_Dev>() || !pp_resource())
return;
get_interface<PPB_VideoDecoder_Dev>()->ReusePictureBuffer(
pp_resource(), picture_buffer_id);
}
int32_t VideoDecoder_Dev::Flush(CompletionCallback callback) {
if (!has_interface<PPB_VideoDecoder_Dev>())
return callback.MayForce(PP_ERROR_NOINTERFACE);
return get_interface<PPB_VideoDecoder_Dev>()->Flush(
pp_resource(), callback.pp_completion_callback());
}
int32_t VideoDecoder_Dev::Reset(CompletionCallback callback) {
if (!has_interface<PPB_VideoDecoder_Dev>())
return callback.MayForce(PP_ERROR_NOINTERFACE);
return get_interface<PPB_VideoDecoder_Dev>()->Reset(
pp_resource(), callback.pp_completion_callback());
}
} // namespace pp
|