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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* Copyright 2014 The Chromium Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* From ppb_video_frame.idl modified Tue Mar 25 18:28:57 2014. */
#ifndef PPAPI_C_PPB_VIDEO_FRAME_H_
#define PPAPI_C_PPB_VIDEO_FRAME_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_size.h"
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_time.h"
#define PPB_VIDEOFRAME_INTERFACE_0_1 "PPB_VideoFrame;0.1"
#define PPB_VIDEOFRAME_INTERFACE PPB_VIDEOFRAME_INTERFACE_0_1
/**
* @file
* Defines the <code>PPB_VideoFrame</code> interface.
*/
/**
* @addtogroup Enums
* @{
*/
typedef enum {
/**
* Unknown format value.
*/
PP_VIDEOFRAME_FORMAT_UNKNOWN = 0,
/**
* 12bpp YVU planar 1x1 Y, 2x2 VU samples.
*/
PP_VIDEOFRAME_FORMAT_YV12 = 1,
/**
* 12bpp YUV planar 1x1 Y, 2x2 UV samples.
*/
PP_VIDEOFRAME_FORMAT_I420 = 2,
/**
* 32bpp BGRA.
*/
PP_VIDEOFRAME_FORMAT_BGRA = 3,
/**
* The last format.
*/
PP_VIDEOFRAME_FORMAT_LAST = PP_VIDEOFRAME_FORMAT_BGRA
} PP_VideoFrame_Format;
/**
* @}
*/
/**
* @addtogroup Interfaces
* @{
*/
struct PPB_VideoFrame_0_1 {
/**
* Determines if a resource is a VideoFrame resource.
*
* @param[in] resource The <code>PP_Resource</code> to test.
*
* @return A <code>PP_Bool</code> with <code>PP_TRUE</code> if the given
* resource is a VideoFrame resource or <code>PP_FALSE</code> otherwise.
*/
PP_Bool (*IsVideoFrame)(PP_Resource resource);
/**
* Gets the timestamp of the video frame.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
*
* @return A <code>PP_TimeDelta</code> containing the timestamp of the video
* frame. Given in seconds since the start of the containing video stream.
*/
PP_TimeDelta (*GetTimestamp)(PP_Resource frame);
/**
* Sets the timestamp of the video frame. Given in seconds since the
* start of the containing video stream.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
* @param[in] timestamp A <code>PP_TimeDelta</code> containing the timestamp
* of the video frame. Given in seconds since the start of the containing
* video stream.
*/
void (*SetTimestamp)(PP_Resource frame, PP_TimeDelta timestamp);
/**
* Gets the format of the video frame.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
*
* @return A <code>PP_VideoFrame_Format</code> containing the format of the
* video frame.
*/
PP_VideoFrame_Format (*GetFormat)(PP_Resource frame);
/**
* Gets the size of the video frame.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
* @param[out] size A <code>PP_Size</code>.
*
* @return A <code>PP_Bool</code> with <code>PP_TRUE</code> on success or
* <code>PP_FALSE</code> on failure.
*/
PP_Bool (*GetSize)(PP_Resource frame, struct PP_Size* size);
/**
* Gets the data buffer for video frame pixels.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
*
* @return A pointer to the beginning of the data buffer.
*/
void* (*GetDataBuffer)(PP_Resource frame);
/**
* Gets the size of data buffer.
*
* @param[in] frame A <code>PP_Resource</code> corresponding to a video frame
* resource.
*
* @return The size of the data buffer.
*/
uint32_t (*GetDataBufferSize)(PP_Resource frame);
};
typedef struct PPB_VideoFrame_0_1 PPB_VideoFrame;
/**
* @}
*/
#endif /* PPAPI_C_PPB_VIDEO_FRAME_H_ */
|