Home | History | Annotate | Download | only in private

Lines Matching refs:destination

8  * for a video destination resource, which sends video frames to a MediaStream
18 * several functions for creating video destination resources and using them to
23 * Creates a video destination resource.
34 * Determines if a resource is a video destination resource.
39 * resource is a video destination resource or <code>PP_FALSE</code>
45 * Opens a video destination for putting frames.
47 * @param[in] destination A <code>PP_Resource</code> corresponding to a video
48 * destination resource.
55 * Returns PP_ERROR_BADRESOURCE if destination isn't a valid video
56 * destination.
57 * Returns PP_ERROR_INPROGRESS if destination is already open.
61 int32_t Open([in] PP_Resource destination,
66 * Puts a frame to the video destination.
73 * @param[in] destination A <code>PP_Resource</code> corresponding to a video
74 * destination resource.
76 * frame to send to the destination.
79 * Returns PP_ERROR_BADRESOURCE if destination isn't a valid video
80 * destination.
81 * Returns PP_ERROR_FAILED if destination is not open, if the video frame has
84 int32_t PutFrame([in] PP_Resource destination,
88 * Closes the video destination.
90 * @param[in] destination A <code>PP_Resource</code> corresponding to a video
91 * destination.
93 void Close([in] PP_Resource destination);