blob: e1a77573d9315fc3d0821fe58767aa70d2b8fba8 (
plain)
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) 2013 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>PPB_VideoWriter</code> struct for a video writer
* resource.
*/
label Chrome {
M28 = 0.1
};
/**
* The <code>PPB_VideoWriter</code> interface contains pointers to several
* functions for creating video writer resources and using them to generate
* streams of video frames.
*/
interface PPB_VideoWriter {
/**
* Creates a video writer resource.
*
* @param[in] instance A <code>PP_Instance</code> identifying one instance
* of a module.
*
* @return A <code>PP_Resource</code> with a nonzero ID on success or zero on
* failure. Failure means the instance was invalid.
*/
PP_Resource Create([in] PP_Instance instance);
/**
* Determines if a given resource is a video writer.
*
* @param[in] resource A <code>PP_Resource</code> corresponding to a resource.
*
* @return A <code>PP_Bool</code> with <code>PP_TRUE</code> if the given
* resource is a video writer or <code>PP_FALSE</code> otherwise.
*/
PP_Bool IsVideoWriter([in] PP_Resource resource);
/**
* Opens a video stream with the given id for writing.
*
* @param[in] writer A <code>PP_Resource</code> corresponding to a video
* writer resource.
* @param[in] stream_id A <code>PP_Var</code> holding a string uniquely
* identifying the stream. This string is application defined.
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
* completion of Open().
*
* @return An int32_t containing an error code from <code>pp_errors.h</code>.
* Returns PP_ERROR_BADRESOURCE if writer isn't a valid video writer.
* Returns PP_ERROR_INPROGRESS if the writer has already opened a stream.
*/
int32_t Open([in] PP_Resource writer,
[in] PP_Var stream_id,
[in] PP_CompletionCallback callback);
/**
* Puts a frame of video to the writer's open stream.
*
* After this call, you should take care to release your references to the
* image embedded in the video frame. If you paint to the image after
* PutFrame(), there is the possibility of artifacts because the browser may
* still be copying the frame to the stream.
*
* @param[in] writer A <code>PP_Resource</code> corresponding to a video
* writer resource.
* @param[in] frame A <code>PP_VideoFrame</code> holding a video frame to
* write to the open stream.
*
* @return An int32_t containing an error code from <code>pp_errors.h</code>.
* Returns PP_ERROR_BADRESOURCE if writer isn't a valid video writer.
* Returns PP_ERROR_FAILED if the writer has not opened a stream, if the video
* frame has an invalid image data resource, or if some other error occurs.
*/
int32_t PutFrame([in] PP_Resource writer,
[in] PP_VideoFrame frame);
/**
* Closes the writer's video stream.
*
* @param[in] writer A <code>PP_Resource</code> corresponding to a video
* writer resource.
*/
void Close([in] PP_Resource writer);
};
|