/* 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/ppb_video_decoder_dev.idl modified Tue Oct 29 00:32:59 2013. */ #ifndef PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ #define PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ #include "ppapi/c/dev/pp_video_dev.h" #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/pp_instance.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" #define PPB_VIDEODECODER_DEV_INTERFACE_0_16 … #define PPB_VIDEODECODER_DEV_INTERFACE … /** * @file * This file defines the <code>PPB_VideoDecoder_Dev</code> interface. */ /** * @addtogroup Interfaces * @{ */ /** * Video decoder interface. * * Typical usage: * - Use Create() to create & configure a new PPB_VideoDecoder_Dev resource. * - Call Decode() to decode some video data. * - Receive ProvidePictureBuffers callback * - Supply the decoder with textures using AssignPictureBuffers. * - Receive PictureReady callbacks * - Hand the textures back to the decoder using ReusePictureBuffer. * - To signal EOS to the decoder: call Flush() and wait for NotifyFlushDone * callback. * - To reset the decoder (e.g. to implement Seek): call Reset() and wait for * NotifyResetDone callback. * - To tear down the decoder call Destroy(). * * See PPP_VideoDecoder_Dev for the notifications the decoder may send the * plugin. */ struct PPB_VideoDecoder_Dev_0_16 { … }; PPB_VideoDecoder_Dev; /** * @} */ #endif /* PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ */