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

Side by Side Diff: source/libvpx/vp8/vp8_cx_iface.c

Issue 415333002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/encoder/onyx_if.c ('k') | source/libvpx/vp9/common/vp9_blockd.h » ('j') | 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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/onyx_if.c ('k') | source/libvpx/vp9/common/vp9_blockd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698