Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Side by Side Diff: source/libvpx/vp9/vp9_cx_iface.c

Issue 998593002: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_rd.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
1438 30, // rc_resize_up_thresold 1438 30, // rc_resize_up_thresold
1439 1439
1440 VPX_VBR, // rc_end_usage 1440 VPX_VBR, // rc_end_usage
1441 #if VPX_ENCODER_ABI_VERSION > (1 + VPX_CODEC_ABI_VERSION) 1441 #if VPX_ENCODER_ABI_VERSION > (1 + VPX_CODEC_ABI_VERSION)
1442 {NULL, 0}, // rc_twopass_stats_in 1442 {NULL, 0}, // rc_twopass_stats_in
1443 {NULL, 0}, // rc_firstpass_mb_stats_in 1443 {NULL, 0}, // rc_firstpass_mb_stats_in
1444 #endif 1444 #endif
1445 256, // rc_target_bandwidth 1445 256, // rc_target_bandwidth
1446 0, // rc_min_quantizer 1446 0, // rc_min_quantizer
1447 63, // rc_max_quantizer 1447 63, // rc_max_quantizer
1448 100, // rc_undershoot_pct 1448 25, // rc_undershoot_pct
1449 100, // rc_overshoot_pct 1449 25, // rc_overshoot_pct
1450 1450
1451 6000, // rc_max_buffer_size 1451 6000, // rc_max_buffer_size
1452 4000, // rc_buffer_initial_size 1452 4000, // rc_buffer_initial_size
1453 5000, // rc_buffer_optimal_size 1453 5000, // rc_buffer_optimal_size
1454 1454
1455 50, // rc_two_pass_vbrbias 1455 50, // rc_two_pass_vbrbias
1456 0, // rc_two_pass_vbrmin_section 1456 0, // rc_two_pass_vbrmin_section
1457 2000, // rc_two_pass_vbrmax_section 1457 2000, // rc_two_pass_vbrmax_section
1458 1458
1459 // keyframing settings (kf) 1459 // keyframing settings (kf)
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1500 1, // 1 cfg map 1500 1, // 1 cfg map
1501 encoder_usage_cfg_map, // vpx_codec_enc_cfg_map_t 1501 encoder_usage_cfg_map, // vpx_codec_enc_cfg_map_t
1502 encoder_encode, // vpx_codec_encode_fn_t 1502 encoder_encode, // vpx_codec_encode_fn_t
1503 encoder_get_cxdata, // vpx_codec_get_cx_data_fn_t 1503 encoder_get_cxdata, // vpx_codec_get_cx_data_fn_t
1504 encoder_set_config, // vpx_codec_enc_config_set_fn_t 1504 encoder_set_config, // vpx_codec_enc_config_set_fn_t
1505 NULL, // vpx_codec_get_global_headers_fn_t 1505 NULL, // vpx_codec_get_global_headers_fn_t
1506 encoder_get_preview, // vpx_codec_get_preview_frame_fn_t 1506 encoder_get_preview, // vpx_codec_get_preview_frame_fn_t
1507 NULL // vpx_codec_enc_mr_get_mem_loc_fn_t 1507 NULL // vpx_codec_enc_mr_get_mem_loc_fn_t
1508 } 1508 }
1509 }; 1509 };
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_rd.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698