| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 /* | 603 /* |
| 604 * Spatial scalability settings (ss) | 604 * Spatial scalability settings (ss) |
| 605 */ | 605 */ |
| 606 | 606 |
| 607 /*!\brief Number of spatial coding layers. | 607 /*!\brief Number of spatial coding layers. |
| 608 * | 608 * |
| 609 * This value specifies the number of spatial coding layers to be used. | 609 * This value specifies the number of spatial coding layers to be used. |
| 610 */ | 610 */ |
| 611 unsigned int ss_number_layers; | 611 unsigned int ss_number_layers; |
| 612 | 612 |
| 613 /*!\brief Target bitrate for each spatial layer. |
| 614 * |
| 615 * These values specify the target coding bitrate to be used for each |
| 616 * spatial layer. |
| 617 */ |
| 618 unsigned int ss_target_bitrate[VPX_SS_MAX_LAYERS]; |
| 619 |
| 613 /*!\brief Number of temporal coding layers. | 620 /*!\brief Number of temporal coding layers. |
| 614 * | 621 * |
| 615 * This value specifies the number of temporal layers to be used. | 622 * This value specifies the number of temporal layers to be used. |
| 616 */ | 623 */ |
| 617 unsigned int ts_number_layers; | 624 unsigned int ts_number_layers; |
| 618 | 625 |
| 619 /*!\brief Target bitrate for each temporal layer. | 626 /*!\brief Target bitrate for each temporal layer. |
| 620 * | 627 * |
| 621 * These values specify the target coding bitrate to be used for each | 628 * These values specify the target coding bitrate to be used for each |
| 622 * temporal layer. | 629 * temporal layer. |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 */ | 935 */ |
| 929 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); |
| 930 | 937 |
| 931 | 938 |
| 932 /*!@} - end defgroup encoder*/ | 939 /*!@} - end defgroup encoder*/ |
| 933 #ifdef __cplusplus | 940 #ifdef __cplusplus |
| 934 } | 941 } |
| 935 #endif | 942 #endif |
| 936 #endif // VPX_VPX_ENCODER_H_ | 943 #endif // VPX_VPX_ENCODER_H_ |
| 937 | 944 |
| OLD | NEW |