2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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-06-18 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "vp8.h"
|
|
|
|
|
|
|
|
/*!\defgroup vp8_decoder WebM VP8 Decoder
|
|
|
|
* \ingroup vp8
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2011-02-17 04:54:49 +03:00
|
|
|
/*!\file
|
2010-05-18 19:58:33 +04:00
|
|
|
* \brief Provides definitions for using the VP8 algorithm within the vpx Decoder
|
|
|
|
* interface.
|
|
|
|
*/
|
2012-11-06 00:37:14 +04:00
|
|
|
#ifndef VP8DX_H
|
|
|
|
#define VP8DX_H
|
2011-06-28 22:46:24 +04:00
|
|
|
#include "vpx_codec_impl_top.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-02-25 01:12:57 +03:00
|
|
|
/*!\name Algorithm interface for VP8
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
|
|
|
* This interface provides the capability to decode raw VP8 streams, as would
|
|
|
|
* be found in AVI files and other non-Flash uses.
|
2011-02-25 01:12:57 +03:00
|
|
|
* @{
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
2010-09-21 18:35:52 +04:00
|
|
|
extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
|
2012-07-14 02:21:29 +04:00
|
|
|
extern vpx_codec_iface_t *vpx_codec_vp8_dx(void);
|
2011-02-25 01:12:57 +03:00
|
|
|
/*!@} - end algorithm interface member group*/
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
/* Include controls common to both the encoder and decoder */
|
|
|
|
#include "vp8.h"
|
|
|
|
|
|
|
|
|
2010-12-14 16:05:06 +03:00
|
|
|
/*!\brief VP8 decoder control functions
|
|
|
|
*
|
2011-02-25 01:12:57 +03:00
|
|
|
* This set of macros define the control functions available for the VP8
|
|
|
|
* decoder interface.
|
|
|
|
*
|
|
|
|
* \sa #vpx_codec_control
|
2010-12-14 16:05:06 +03:00
|
|
|
*/
|
2012-07-14 02:21:29 +04: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,
|
|
|
|
|
|
|
|
/** check if the indicated frame is corrupted */
|
|
|
|
VP8D_GET_FRAME_CORRUPTED,
|
|
|
|
|
2012-11-06 00:37:14 +04:00
|
|
|
/** control function to get info on which reference frames were used
|
|
|
|
* by the last decode
|
|
|
|
*/
|
|
|
|
VP8D_GET_LAST_REF_USED,
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
VP8_DECODER_CTRL_ID_MAX
|
|
|
|
};
|
2010-12-14 16:05:06 +03:00
|
|
|
|
|
|
|
|
2011-03-04 16:51:39 +03:00
|
|
|
/*!\brief VP8 decoder control function parameter type
|
2010-12-14 16:05:06 +03:00
|
|
|
*
|
2011-03-04 16:51:39 +03:00
|
|
|
* Defines the data types that VP8D control functions take. Note that
|
2010-12-14 16:05:06 +03:00
|
|
|
* additional common controls are defined in vp8.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_UPDATES, int *)
|
2010-12-16 18:46:31 +03:00
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_FRAME_CORRUPTED, int *)
|
2012-11-06 00:37:14 +04:00
|
|
|
VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_USED, int *)
|
2010-12-14 16:05:06 +03:00
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
/*! @} - end defgroup vp8_decoder */
|
|
|
|
|
|
|
|
|
2011-06-28 22:46:24 +04:00
|
|
|
#include "vpx_codec_impl_bottom.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|