| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 | 11 |
| 12 #include "vp8.h" | 12 #include "vp8.h" |
| 13 | 13 |
| 14 /*!\defgroup vp8_decoder WebM VP8 Decoder | 14 /*!\defgroup vp8_decoder WebM VP8 Decoder |
| 15 * \ingroup vp8 | 15 * \ingroup vp8 |
| 16 * | 16 * |
| 17 * @{ | 17 * @{ |
| 18 */ | 18 */ |
| 19 /*!\file | 19 /*!\file |
| 20 * \brief Provides definitions for using the VP8 algorithm within the vpx Decode
r | 20 * \brief Provides definitions for using the VP8 algorithm within the vpx Decode
r |
| 21 * interface. | 21 * interface. |
| 22 */ | 22 */ |
| 23 #ifndef VP8DX_H | 23 #ifndef VP8DX_H |
| 24 #define VP8DX_H | 24 #define VP8DX_H |
| 25 #include "vpx/vpx_codec_impl_top.h" | 25 #include "vpx_codec_impl_top.h" |
| 26 | 26 |
| 27 /*!\name Algorithm interface for VP8 | 27 /*!\name Algorithm interface for VP8 |
| 28 * | 28 * |
| 29 * This interface provides the capability to decode raw VP8 streams, as would | 29 * This interface provides the capability to decode raw VP8 streams, as would |
| 30 * be found in AVI files and other non-Flash uses. | 30 * be found in AVI files and other non-Flash uses. |
| 31 * @{ | 31 * @{ |
| 32 */ | 32 */ |
| 33 extern vpx_codec_iface_t vpx_codec_vp8_dx_algo; | 33 extern vpx_codec_iface_t vpx_codec_vp8_dx_algo; |
| 34 extern vpx_codec_iface_t* vpx_codec_vp8_dx(void); | 34 extern vpx_codec_iface_t* vpx_codec_vp8_dx(void); |
| 35 /*!@} - end algorithm interface member group*/ | 35 /*!@} - end algorithm interface member group*/ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 */ | 67 */ |
| 68 | 68 |
| 69 | 69 |
| 70 VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_UPDATES, int *) | 70 VPX_CTRL_USE_TYPE(VP8D_GET_LAST_REF_UPDATES, int *) |
| 71 VPX_CTRL_USE_TYPE(VP8D_GET_FRAME_CORRUPTED, int *) | 71 VPX_CTRL_USE_TYPE(VP8D_GET_FRAME_CORRUPTED, int *) |
| 72 | 72 |
| 73 | 73 |
| 74 /*! @} - end defgroup vp8_decoder */ | 74 /*! @} - end defgroup vp8_decoder */ |
| 75 | 75 |
| 76 | 76 |
| 77 #include "vpx/vpx_codec_impl_bottom.h" | 77 #include "vpx_codec_impl_bottom.h" |
| 78 #endif | 78 #endif |
| OLD | NEW |