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

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

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/vp8_common.mk ('k') | source/libvpx/vp8/vp8cx.mk » ('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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 1258
1259 /* keyframing settings (kf) */ 1259 /* keyframing settings (kf) */
1260 VPX_KF_AUTO, /* g_kfmode*/ 1260 VPX_KF_AUTO, /* g_kfmode*/
1261 0, /* kf_min_dist */ 1261 0, /* kf_min_dist */
1262 128, /* kf_max_dist */ 1262 128, /* kf_max_dist */
1263 1263
1264 #if VPX_ENCODER_ABI_VERSION == (1 + VPX_CODEC_ABI_VERSION) 1264 #if VPX_ENCODER_ABI_VERSION == (1 + VPX_CODEC_ABI_VERSION)
1265 "vp8.fpf" /* first pass filename */ 1265 "vp8.fpf" /* first pass filename */
1266 #endif 1266 #endif
1267 VPX_SS_DEFAULT_LAYERS, /* ss_number_layers */ 1267 VPX_SS_DEFAULT_LAYERS, /* ss_number_layers */
1268 {0}, /* ss_target_bitrate */
1268 1, /* ts_number_layers */ 1269 1, /* ts_number_layers */
1269 {0}, /* ts_target_bitrate */ 1270 {0}, /* ts_target_bitrate */
1270 {0}, /* ts_rate_decimator */ 1271 {0}, /* ts_rate_decimator */
1271 0, /* ts_periodicity */ 1272 0, /* ts_periodicity */
1272 {0}, /* ts_layer_id */ 1273 {0}, /* ts_layer_id */
1273 }}, 1274 }},
1274 { -1, {NOT_IMPLEMENTED}} 1275 { -1, {NOT_IMPLEMENTED}}
1275 }; 1276 };
1276 1277
1277 1278
(...skipping 21 matching lines...) Expand all
1299 { 1300 {
1300 vp8e_usage_cfg_map, /* vpx_codec_enc_cfg_map_t peek_si; */ 1301 vp8e_usage_cfg_map, /* vpx_codec_enc_cfg_map_t peek_si; */
1301 vp8e_encode, /* vpx_codec_encode_fn_t encode; */ 1302 vp8e_encode, /* vpx_codec_encode_fn_t encode; */
1302 vp8e_get_cxdata, /* vpx_codec_get_cx_data_fn_t frame_get; */ 1303 vp8e_get_cxdata, /* vpx_codec_get_cx_data_fn_t frame_get; */
1303 vp8e_set_config, 1304 vp8e_set_config,
1304 NOT_IMPLEMENTED, 1305 NOT_IMPLEMENTED,
1305 vp8e_get_preview, 1306 vp8e_get_preview,
1306 vp8e_mr_alloc_mem, 1307 vp8e_mr_alloc_mem,
1307 } /* encoder functions */ 1308 } /* encoder functions */
1308 }; 1309 };
OLDNEW
« no previous file with comments | « source/libvpx/vp8/vp8_common.mk ('k') | source/libvpx/vp8/vp8cx.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698