| 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_VPX_ENCODER_H_ | 10 #ifndef VPX_VPX_ENCODER_H_ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 /*!\deprecated Use #VPX_TS_MAX_PERIODICITY instead. */ | 42 /*!\deprecated Use #VPX_TS_MAX_PERIODICITY instead. */ |
| 43 #define MAX_PERIODICITY VPX_TS_MAX_PERIODICITY | 43 #define MAX_PERIODICITY VPX_TS_MAX_PERIODICITY |
| 44 | 44 |
| 45 /*!\deprecated Use #VPX_TS_MAX_LAYERS instead. */ | 45 /*!\deprecated Use #VPX_TS_MAX_LAYERS instead. */ |
| 46 #define MAX_LAYERS VPX_TS_MAX_LAYERS | 46 #define MAX_LAYERS VPX_TS_MAX_LAYERS |
| 47 | 47 |
| 48 /*! Spatial Scalability: Maximum number of coding layers */ | 48 /*! Spatial Scalability: Maximum number of coding layers */ |
| 49 #define VPX_SS_MAX_LAYERS 5 | 49 #define VPX_SS_MAX_LAYERS 5 |
| 50 | 50 |
| 51 /*! Spatial Scalability: Default number of coding layers */ | 51 /*! Spatial Scalability: Default number of coding layers */ |
| 52 #define VPX_SS_DEFAULT_LAYERS 3 | 52 #define VPX_SS_DEFAULT_LAYERS 1 |
| 53 | 53 |
| 54 /*!\brief Current ABI version number | 54 /*!\brief Current ABI version number |
| 55 * | 55 * |
| 56 * \internal | 56 * \internal |
| 57 * If this file is altered in any way that changes the ABI, this value | 57 * If this file is altered in any way that changes the ABI, this value |
| 58 * must be bumped. Examples include, but are not limited to, changing | 58 * must be bumped. Examples include, but are not limited to, changing |
| 59 * types, removing or reassigning enums, adding/removing/rearranging | 59 * types, removing or reassigning enums, adding/removing/rearranging |
| 60 * fields to structures | 60 * fields to structures |
| 61 */ | 61 */ |
| 62 #define VPX_ENCODER_ABI_VERSION (3 + VPX_CODEC_ABI_VERSION) /**<\hideinitializer
*/ | 62 #define VPX_ENCODER_ABI_VERSION (3 + VPX_CODEC_ABI_VERSION) /**<\hideinitializer
*/ |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 */ | 935 */ |
| 936 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx); | 936 const vpx_image_t *vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx); |
| 937 | 937 |
| 938 | 938 |
| 939 /*!@} - end defgroup encoder*/ | 939 /*!@} - end defgroup encoder*/ |
| 940 #ifdef __cplusplus | 940 #ifdef __cplusplus |
| 941 } | 941 } |
| 942 #endif | 942 #endif |
| 943 #endif // VPX_VPX_ENCODER_H_ | 943 #endif // VPX_VPX_ENCODER_H_ |
| 944 | 944 |
| OLD | NEW |