| 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 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 /*!\name Algorithm interface for VP9 | 40 /*!\name Algorithm interface for VP9 |
| 41 * | 41 * |
| 42 * This interface provides the capability to decode VP9 streams. | 42 * This interface provides the capability to decode VP9 streams. |
| 43 * @{ | 43 * @{ |
| 44 */ | 44 */ |
| 45 extern vpx_codec_iface_t vpx_codec_vp9_dx_algo; | 45 extern vpx_codec_iface_t vpx_codec_vp9_dx_algo; |
| 46 extern vpx_codec_iface_t *vpx_codec_vp9_dx(void); | 46 extern vpx_codec_iface_t *vpx_codec_vp9_dx(void); |
| 47 /*!@} - end algorithm interface member group*/ | 47 /*!@} - end algorithm interface member group*/ |
| 48 | 48 |
| 49 /*!\name Algorithm interface for VP10 |
| 50 * |
| 51 * This interface provides the capability to decode VP10 streams. |
| 52 * @{ |
| 53 */ |
| 54 extern vpx_codec_iface_t vpx_codec_vp10_dx_algo; |
| 55 extern vpx_codec_iface_t *vpx_codec_vp10_dx(void); |
| 56 /*!@} - end algorithm interface member group*/ |
| 49 | 57 |
| 50 /*!\enum vp8_dec_control_id | 58 /*!\enum vp8_dec_control_id |
| 51 * \brief VP8 decoder control functions | 59 * \brief VP8 decoder control functions |
| 52 * | 60 * |
| 53 * This set of macros define the control functions available for the VP8 | 61 * This set of macros define the control functions available for the VP8 |
| 54 * decoder interface. | 62 * decoder interface. |
| 55 * | 63 * |
| 56 * \sa #vpx_codec_control | 64 * \sa #vpx_codec_control |
| 57 */ | 65 */ |
| 58 enum vp8_dec_control_id { | 66 enum vp8_dec_control_id { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 VPX_CTRL_USE_TYPE(VP9D_GET_FRAME_SIZE, int *) | 165 VPX_CTRL_USE_TYPE(VP9D_GET_FRAME_SIZE, int *) |
| 158 VPX_CTRL_USE_TYPE(VP9_INVERT_TILE_DECODE_ORDER, int) | 166 VPX_CTRL_USE_TYPE(VP9_INVERT_TILE_DECODE_ORDER, int) |
| 159 | 167 |
| 160 /*! @} - end defgroup vp8_decoder */ | 168 /*! @} - end defgroup vp8_decoder */ |
| 161 | 169 |
| 162 #ifdef __cplusplus | 170 #ifdef __cplusplus |
| 163 } // extern "C" | 171 } // extern "C" |
| 164 #endif | 172 #endif |
| 165 | 173 |
| 166 #endif // VPX_VP8DX_H_ | 174 #endif // VPX_VP8DX_H_ |
| OLD | NEW |