| 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_ |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 /*!\brief vp9 svc parameters | 291 /*!\brief vp9 svc parameters |
| 292 * | 292 * |
| 293 * This defines parameters for svc encoding. | 293 * This defines parameters for svc encoding. |
| 294 * | 294 * |
| 295 */ | 295 */ |
| 296 typedef struct vpx_svc_parameters { | 296 typedef struct vpx_svc_parameters { |
| 297 unsigned int width; /**< width of current spatial layer */ | 297 unsigned int width; /**< width of current spatial layer */ |
| 298 unsigned int height; /**< height of current spatial layer */ | 298 unsigned int height; /**< height of current spatial layer */ |
| 299 int spatial_layer; /**< current spatial layer number - 0 = base */ | 299 int spatial_layer; /**< current spatial layer number - 0 = base */ |
| 300 int temporal_layer; /**< current temporal layer number - 0 = base */ | 300 int temporal_layer; /**< current temporal layer number - 0 = base */ |
| 301 int flags; /**< encode frame flags */ | |
| 302 int max_quantizer; /**< max quantizer for current layer */ | 301 int max_quantizer; /**< max quantizer for current layer */ |
| 303 int min_quantizer; /**< min quantizer for current layer */ | 302 int min_quantizer; /**< min quantizer for current layer */ |
| 304 int distance_from_i_frame; /**< frame number within current gop */ | 303 int distance_from_i_frame; /**< frame number within current gop */ |
| 305 int lst_fb_idx; /**< last frame frame buffer index */ | 304 int lst_fb_idx; /**< last frame frame buffer index */ |
| 306 int gld_fb_idx; /**< golden frame frame buffer index */ | 305 int gld_fb_idx; /**< golden frame frame buffer index */ |
| 307 int alt_fb_idx; /**< alt reference frame frame buffer index */ | 306 int alt_fb_idx; /**< alt reference frame frame buffer index */ |
| 308 } vpx_svc_parameters_t; | 307 } vpx_svc_parameters_t; |
| 309 | 308 |
| 310 /*!\brief vp9 svc layer parameters | 309 /*!\brief vp9 svc layer parameters |
| 311 * | 310 * |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int) | 369 VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int) |
| 371 | 370 |
| 372 VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PERIODIC_BOOST, unsigned int) | 371 VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PERIODIC_BOOST, unsigned int) |
| 373 | 372 |
| 374 /*! @} - end defgroup vp8_encoder */ | 373 /*! @} - end defgroup vp8_encoder */ |
| 375 #ifdef __cplusplus | 374 #ifdef __cplusplus |
| 376 } // extern "C" | 375 } // extern "C" |
| 377 #endif | 376 #endif |
| 378 | 377 |
| 379 #endif // VPX_VP8CX_H_ | 378 #endif // VPX_VP8CX_H_ |
| OLD | NEW |