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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* Copyright (c) 2012 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.
*/
/**
* This file defines the <code>PPP_VideoDecoder_Dev</code> interface.
*/
label Chrome {
M14 = 0.9,
M18 = 0.10,
M21 = 0.11
};
/**
* PPP_VideoDecoder_Dev structure contains the function pointers that the
* plugin MUST implement to provide services needed by the video decoder
* implementation.
*
* See PPB_VideoDecoder_Dev for general usage tips.
*/
interface PPP_VideoDecoder_Dev {
/**
* Callback function to provide buffers for the decoded output pictures. If
* succeeds plugin must provide buffers through AssignPictureBuffers function
* to the API. If |req_num_of_bufs| matching exactly the specification
* given in the parameters cannot be allocated decoder should be destroyed.
*
* Decoding will not proceed until buffers have been provided.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
* |req_num_of_bufs| tells how many buffers are needed by the decoder.
* |dimensions| tells the dimensions of the buffer to allocate.
*/
[deprecate=0.11]
void ProvidePictureBuffers(
[in] PP_Instance instance,
[in] PP_Resource decoder,
[in] uint32_t req_num_of_bufs,
[in] PP_Size dimensions);
/**
* Callback function to provide buffers for the decoded output pictures. If
* succeeds plugin must provide buffers through AssignPictureBuffers function
* to the API. If |req_num_of_bufs| matching exactly the specification
* given in the parameters cannot be allocated decoder should be destroyed.
*
* Decoding will not proceed until buffers have been provided.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
* |req_num_of_bufs| tells how many buffers are needed by the decoder.
* |dimensions| tells the dimensions of the buffer to allocate.
* |texture_target| the type of texture used.
*/
[version=0.11]
void ProvidePictureBuffers(
[in] PP_Instance instance,
[in] PP_Resource decoder,
[in] uint32_t req_num_of_bufs,
[in] PP_Size dimensions,
[in] uint32_t texture_target);
/**
* Callback function for decoder to deliver unneeded picture buffers back to
* the plugin.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
* |picture_buffer| points to the picture buffer that is no longer needed.
*/
void DismissPictureBuffer(
[in] PP_Instance instance,
[in] PP_Resource decoder,
[in] int32_t picture_buffer_id);
/**
* Callback function for decoder to deliver decoded pictures ready to be
* displayed. Decoder expects the plugin to return the buffer back to the
* decoder through ReusePictureBuffer function in PPB Video Decoder API.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
* |picture| is the picture that is ready.
*/
void PictureReady(
[in] PP_Instance instance,
[in] PP_Resource decoder,
[in] PP_Picture_Dev picture);
/**
* Callback function to tell the plugin that decoder has decoded end of stream
* marker and output all the pictures that should be displayed from the
* stream.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
*/
[deprecate=0.10]
void EndOfStream(
[in] PP_Instance instance,
[in] PP_Resource decoder);
/**
* Error handler callback for decoder to deliver information about detected
* errors to the plugin.
*
* Parameters:
* |instance| the plugin instance to which the callback is responding.
* |decoder| the PPB_VideoDecoder_Dev resource.
* |error| error is the enumeration specifying the error.
*/
void NotifyError(
[in] PP_Instance instance,
[in] PP_Resource decoder,
[in] PP_VideoDecodeError_Dev error);
};
|