use relative include path
[libvpx.git] / vpx / vp8dx.h
blob1d9d53165ecba6a9ef38f617346c9b6fe0ff6874
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
12 #include "vp8.h"
14 /*!\defgroup vp8_decoder WebM VP8 Decoder
15 * \ingroup vp8
17 * @{
19 /*!\file
20 * \brief Provides definitions for using the VP8 algorithm within the vpx Decoder
21 * interface.
23 #ifndef VP8DX_H
24 #define VP8DX_H
25 #include "vpx_codec_impl_top.h"
27 /*!\name Algorithm interface for VP8
29 * This interface provides the capability to decode raw VP8 streams, as would
30 * be found in AVI files and other non-Flash uses.
31 * @{
33 extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
34 extern vpx_codec_iface_t* vpx_codec_vp8_dx(void);
35 /*!@} - end algorithm interface member group*/
37 /* Include controls common to both the encoder and decoder */
38 #include "vp8.h"
41 /*!\brief VP8 decoder control functions
43 * This set of macros define the control functions available for the VP8
44 * decoder interface.
46 * \sa #vpx_codec_control
48 enum vp8_dec_control_id
50 /** control function to get info on which reference frames were updated
51 * by the last decode
53 VP8D_GET_LAST_REF_UPDATES = VP8_DECODER_CTRL_ID_START,
55 /** check if the indicated frame is corrupted */
56 VP8D_GET_FRAME_CORRUPTED,
58 VP8_DECODER_CTRL_ID_MAX
59 } ;
62 /*!\brief VP8 decoder control function parameter type
64 * Defines the data types that VP8D control functions take. Note that
65 * additional common controls are defined in vp8.h
70 VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_UPDATES, int *)
71 VPX_CTRL_USE_TYPE(VP8D_GET_FRAME_CORRUPTED, int *)
74 /*! @} - end defgroup vp8_decoder */
77 #include "vpx_codec_impl_bottom.h"
78 #endif