2010-06-08 16:31:28 -07:00
|
|
|
/*
|
2010-11-07 23:47:17 -08:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-06-08 16:31:28 -07:00
|
|
|
*
|
2010-09-09 05:06:21 -07:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-08 16:31:28 -07:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-09-09 05:06:21 -07:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-08 16:31:28 -07:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!\defgroup vp8_decoder WebM VP8 Decoder
|
|
|
|
* \ingroup vp8
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2011-10-13 17:37:21 -07:00
|
|
|
/*!\file
|
2010-06-08 16:31:28 -07:00
|
|
|
* \brief Provides definitions for using the VP8 algorithm within the vpx Decoder
|
|
|
|
* interface.
|
|
|
|
*/
|
2014-10-07 09:49:40 -07:00
|
|
|
#ifndef VPX_VP8DX_H_
|
|
|
|
#define VPX_VP8DX_H_
|
2013-12-06 03:19:00 -08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2010-06-08 16:31:28 -07:00
|
|
|
|
2014-10-07 09:49:40 -07:00
|
|
|
/* Include controls common to both the encoder and decoder */
|
|
|
|
#include "./vp8.h"
|
|
|
|
|
2011-10-13 17:37:21 -07:00
|
|
|
/*!\name Algorithm interface for VP8
|
2010-06-08 16:31:28 -07:00
|
|
|
*
|
|
|
|
* This interface provides the capability to decode raw VP8 streams, as would
|
|
|
|
* be found in AVI files and other non-Flash uses.
|
2011-10-13 17:37:21 -07:00
|
|
|
* @{
|
2010-06-08 16:31:28 -07:00
|
|
|
*/
|
2010-11-07 23:47:17 -08:00
|
|
|
extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
|
2013-12-06 03:19:00 -08:00
|
|
|
extern vpx_codec_iface_t *vpx_codec_vp8_dx(void);
|
|
|
|
|
|
|
|
/* TODO(jkoleszar): These move to VP9 in a later patch set. */
|
|
|
|
extern vpx_codec_iface_t vpx_codec_vp9_dx_algo;
|
|
|
|
extern vpx_codec_iface_t *vpx_codec_vp9_dx(void);
|
2011-10-13 17:37:21 -07:00
|
|
|
/*!@} - end algorithm interface member group*/
|
2010-06-08 16:31:28 -07:00
|
|
|
|
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/*!\enum vp8_dec_control_id
|
|
|
|
* \brief VP8 decoder control functions
|
2011-10-13 17:37:21 -07:00
|
|
|
*
|
|
|
|
* This set of macros define the control functions available for the VP8
|
|
|
|
* decoder interface.
|
|
|
|
*
|
|
|
|
* \sa #vpx_codec_control
|
|
|
|
*/
|
2013-12-06 03:19:00 -08:00
|
|
|
enum vp8_dec_control_id {
|
|
|
|
/** control function to get info on which reference frames were updated
|
|
|
|
* by the last decode
|
|
|
|
*/
|
|
|
|
VP8D_GET_LAST_REF_UPDATES = VP8_DECODER_CTRL_ID_START,
|
2011-10-13 17:37:21 -07:00
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/** check if the indicated frame is corrupted */
|
|
|
|
VP8D_GET_FRAME_CORRUPTED,
|
2011-10-13 17:37:21 -07:00
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/** control function to get info on which reference frames were used
|
|
|
|
* by the last decode
|
|
|
|
*/
|
|
|
|
VP8D_GET_LAST_REF_USED,
|
|
|
|
|
|
|
|
/** decryption function to decrypt encoded buffer data immediately
|
2014-10-07 09:49:40 -07:00
|
|
|
* before decoding. Takes a vpx_decrypt_init, which contains
|
2013-12-06 03:19:00 -08:00
|
|
|
* a callback function and opaque context pointer.
|
|
|
|
*/
|
2014-10-07 09:49:40 -07:00
|
|
|
VPXD_SET_DECRYPTOR,
|
|
|
|
VP8D_SET_DECRYPTOR = VPXD_SET_DECRYPTOR,
|
|
|
|
|
|
|
|
/** control function to get the display dimensions for the current frame. */
|
|
|
|
VP9D_GET_DISPLAY_SIZE,
|
|
|
|
|
|
|
|
/** control function to get the bit depth of the stream. */
|
|
|
|
VP9D_GET_BIT_DEPTH,
|
2012-04-29 20:51:44 -07:00
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/** For testing. */
|
|
|
|
VP9_INVERT_TILE_DECODE_ORDER,
|
2011-10-13 17:37:21 -07:00
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
VP8_DECODER_CTRL_ID_MAX
|
|
|
|
};
|
|
|
|
|
2014-10-07 09:49:40 -07:00
|
|
|
/** Decrypt n bytes of data from input -> output, using the decrypt_state
|
|
|
|
* passed in VPXD_SET_DECRYPTOR.
|
|
|
|
*/
|
|
|
|
typedef void (*vpx_decrypt_cb)(void *decrypt_state, const unsigned char *input,
|
|
|
|
unsigned char *output, int count);
|
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/*!\brief Structure to hold decryption state
|
|
|
|
*
|
|
|
|
* Defines a structure to hold the decryption state and access function.
|
|
|
|
*/
|
2014-10-07 09:49:40 -07:00
|
|
|
typedef struct vpx_decrypt_init {
|
|
|
|
/*! Decrypt callback. */
|
|
|
|
vpx_decrypt_cb decrypt_cb;
|
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
/*! Decryption state. */
|
|
|
|
void *decrypt_state;
|
2014-10-07 09:49:40 -07:00
|
|
|
} vpx_decrypt_init;
|
|
|
|
|
|
|
|
/*!\brief A deprecated alias for vpx_decrypt_init.
|
|
|
|
*/
|
|
|
|
typedef vpx_decrypt_init vp8_decrypt_init;
|
|
|
|
|
2011-10-13 17:37:21 -07:00
|
|
|
|
|
|
|
/*!\brief VP8 decoder control function parameter type
|
|
|
|
*
|
|
|
|
* Defines the data types that VP8D control functions take. Note that
|
|
|
|
* additional common controls are defined in vp8.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-10-07 09:49:40 -07:00
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_UPDATES, int *)
|
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_FRAME_CORRUPTED, int *)
|
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_USED, int *)
|
|
|
|
VPX_CTRL_USE_TYPE(VPXD_SET_DECRYPTOR, vpx_decrypt_init *)
|
|
|
|
VPX_CTRL_USE_TYPE(VP8D_SET_DECRYPTOR, vpx_decrypt_init *)
|
|
|
|
VPX_CTRL_USE_TYPE(VP9D_GET_DISPLAY_SIZE, int *)
|
|
|
|
VPX_CTRL_USE_TYPE(VP9D_GET_BIT_DEPTH, unsigned int *)
|
2013-12-06 03:19:00 -08:00
|
|
|
VPX_CTRL_USE_TYPE(VP9_INVERT_TILE_DECODE_ORDER, int)
|
2011-10-13 17:37:21 -07:00
|
|
|
|
2010-06-08 16:31:28 -07:00
|
|
|
/*! @} - end defgroup vp8_decoder */
|
|
|
|
|
2013-12-06 03:19:00 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
2010-06-08 16:31:28 -07:00
|
|
|
|
2014-10-07 09:49:40 -07:00
|
|
|
#endif // VPX_VP8DX_H_
|