| 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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 | 1309 |
| 1310 /* keyframing settings (kf) */ | 1310 /* keyframing settings (kf) */ |
| 1311 VPX_KF_AUTO, /* g_kfmode*/ | 1311 VPX_KF_AUTO, /* g_kfmode*/ |
| 1312 0, /* kf_min_dist */ | 1312 0, /* kf_min_dist */ |
| 1313 128, /* kf_max_dist */ | 1313 128, /* kf_max_dist */ |
| 1314 | 1314 |
| 1315 #if VPX_ENCODER_ABI_VERSION == (1 + VPX_CODEC_ABI_VERSION) | 1315 #if VPX_ENCODER_ABI_VERSION == (1 + VPX_CODEC_ABI_VERSION) |
| 1316 "vp8.fpf" /* first pass filename */ | 1316 "vp8.fpf" /* first pass filename */ |
| 1317 #endif | 1317 #endif |
| 1318 VPX_SS_DEFAULT_LAYERS, /* ss_number_layers */ | 1318 VPX_SS_DEFAULT_LAYERS, /* ss_number_layers */ |
| 1319 #ifdef CONFIG_SPATIAL_SVC | 1319 #if CONFIG_SPATIAL_SVC |
| 1320 {0}, | 1320 {0}, |
| 1321 #endif | 1321 #endif |
| 1322 {0}, /* ss_target_bitrate */ | 1322 {0}, /* ss_target_bitrate */ |
| 1323 1, /* ts_number_layers */ | 1323 1, /* ts_number_layers */ |
| 1324 {0}, /* ts_target_bitrate */ | 1324 {0}, /* ts_target_bitrate */ |
| 1325 {0}, /* ts_rate_decimator */ | 1325 {0}, /* ts_rate_decimator */ |
| 1326 0, /* ts_periodicity */ | 1326 0, /* ts_periodicity */ |
| 1327 {0}, /* ts_layer_id */ | 1327 {0}, /* ts_layer_id */ |
| 1328 }}, | 1328 }}, |
| 1329 { -1, {NOT_IMPLEMENTED}} | 1329 { -1, {NOT_IMPLEMENTED}} |
| (...skipping 24 matching lines...) Expand all Loading... |
| 1354 { | 1354 { |
| 1355 vp8e_usage_cfg_map, /* vpx_codec_enc_cfg_map_t peek_si; */ | 1355 vp8e_usage_cfg_map, /* vpx_codec_enc_cfg_map_t peek_si; */ |
| 1356 vp8e_encode, /* vpx_codec_encode_fn_t encode; */ | 1356 vp8e_encode, /* vpx_codec_encode_fn_t encode; */ |
| 1357 vp8e_get_cxdata, /* vpx_codec_get_cx_data_fn_t frame_get; */ | 1357 vp8e_get_cxdata, /* vpx_codec_get_cx_data_fn_t frame_get; */ |
| 1358 vp8e_set_config, | 1358 vp8e_set_config, |
| 1359 NOT_IMPLEMENTED, | 1359 NOT_IMPLEMENTED, |
| 1360 vp8e_get_preview, | 1360 vp8e_get_preview, |
| 1361 vp8e_mr_alloc_mem, | 1361 vp8e_mr_alloc_mem, |
| 1362 } /* encoder functions */ | 1362 } /* encoder functions */ |
| 1363 }; | 1363 }; |
| OLD | NEW |