Merge "configure: detect toolchain if not specified"
[profile/ivi/libvpx.git] / vpx / vp8dx.h
1 /*
2  *  Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license and patent
5  *  grant that can be found in the LICENSE file in the root of the source
6  *  tree. All contributing project authors may be found in the AUTHORS
7  *  file in the root of the source tree.
8  */
9
10
11 #include "vp8.h"
12
13 /*!\defgroup vp8_decoder WebM VP8 Decoder
14  * \ingroup vp8
15  *
16  * @{
17  */
18 /*!\file vp8dx.h
19  * \brief Provides definitions for using the VP8 algorithm within the vpx Decoder
20  *        interface.
21  */
22 #ifndef VP8DX_H
23 #define VP8DX_H
24 #include "vpx/vpx_codec_impl_top.h"
25
26 /*!\brief Algorithm interface for VP8
27  *
28  * This interface provides the capability to decode raw VP8 streams, as would
29  * be found in AVI files and other non-Flash uses.
30  */
31 extern vpx_codec_iface_t vpx_codec_vp8_dx_algo;
32
33 /* Include controls common to both the encoder and decoder */
34 #include "vp8.h"
35
36
37 /*! @} - end defgroup vp8_decoder */
38
39
40 #include "vpx/vpx_codec_impl_bottom.h"
41 #endif