| 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 #ifndef VPX_VP8CX_H_ | 10 #ifndef VPX_VP8CX_H_ |
| 11 #define VPX_VP8CX_H_ | 11 #define VPX_VP8CX_H_ |
| 12 | 12 |
| 13 /*!\defgroup vp8_encoder WebM VP8/VP9 Encoder | 13 /*!\defgroup vp8_encoder WebM VP8/VP9 Encoder |
| 14 * \ingroup vp8 | 14 * \ingroup vp8 |
| 15 * | 15 * |
| 16 * @{ | 16 * @{ |
| 17 */ | 17 */ |
| 18 #include "./vp8.h" | 18 #include "./vp8.h" |
| 19 #include "vpx/vpx_encoder.h" | 19 #include "./vpx_encoder.h" |
| 20 | 20 |
| 21 /*!\file | 21 /*!\file |
| 22 * \brief Provides definitions for using VP8 or VP9 encoder algorithm within the | 22 * \brief Provides definitions for using VP8 or VP9 encoder algorithm within the |
| 23 * vpx Codec Interface. | 23 * vpx Codec Interface. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifdef __cplusplus | 26 #ifdef __cplusplus |
| 27 extern "C" { | 27 extern "C" { |
| 28 #endif | 28 #endif |
| 29 | 29 |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 | 690 |
| 691 VPX_CTRL_USE_TYPE(VP9E_SET_TUNE_CONTENT, int) /* vp9e_tune_content */ | 691 VPX_CTRL_USE_TYPE(VP9E_SET_TUNE_CONTENT, int) /* vp9e_tune_content */ |
| 692 | 692 |
| 693 VPX_CTRL_USE_TYPE(VP9E_SET_COLOR_SPACE, int) | 693 VPX_CTRL_USE_TYPE(VP9E_SET_COLOR_SPACE, int) |
| 694 /*! @} - end defgroup vp8_encoder */ | 694 /*! @} - end defgroup vp8_encoder */ |
| 695 #ifdef __cplusplus | 695 #ifdef __cplusplus |
| 696 } // extern "C" | 696 } // extern "C" |
| 697 #endif | 697 #endif |
| 698 | 698 |
| 699 #endif // VPX_VP8CX_H_ | 699 #endif // VPX_VP8CX_H_ |
| OLD | NEW |