/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From dev/pp_video_capture_dev.idl modified Mon Nov 14 10:36:01 2011. */ #ifndef PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ #define PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_stdint.h" /** * @file * Structs for dealing with video capture. */ /** * @addtogroup Structs * @{ */ /** * PP_VideoCaptureDeviceInfo_Dev is a structure that represent a video capture * configuration, such as resolution and frame rate. */ struct PP_VideoCaptureDeviceInfo_Dev { … }; PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(…); /** * @} */ /** * @addtogroup Enums * @{ */ /** * PP_VideoCaptureStatus_Dev is an enumeration that defines the various possible * states of a VideoCapture. */ PP_VideoCaptureStatus_Dev; PP_COMPILE_ASSERT_SIZE_IN_BYTES(…); /** * @} */ #endif /* PPAPI_C_DEV_PP_VIDEO_CAPTURE_DEV_H_ */