Merge "Renaming 'Mode' to 'mode'."

This commit is contained in:
Dmitry Kovalev 2014-01-08 16:29:29 -08:00 committed by Gerrit Code Review
commit 4fbe54d201
3 changed files with 8 additions and 8 deletions

View File

@ -106,7 +106,7 @@ extern "C"
// were generated in the first encoding pass to create the compressed
// output using the highest possible quality, and taking a
// longer amount of time to encode.. ( speed setting ignored )
int Mode;
int mode;
// Key Framing Operations
int auto_key; // autodetect cut scenes and set the keyframes

View File

@ -1314,7 +1314,7 @@ void vp9_change_config(VP9_PTR ptr, VP9_CONFIG *oxcf) {
cpi->oxcf = *oxcf;
switch (cpi->oxcf.Mode) {
switch (cpi->oxcf.mode) {
// Real time and one pass deprecated in test code base
case MODE_GOODQUALITY:
cpi->pass = 0;

View File

@ -261,13 +261,13 @@ static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf,
switch (cfg.g_pass) {
case VPX_RC_ONE_PASS:
oxcf->Mode = MODE_GOODQUALITY;
oxcf->mode = MODE_GOODQUALITY;
break;
case VPX_RC_FIRST_PASS:
oxcf->Mode = MODE_FIRSTPASS;
oxcf->mode = MODE_FIRSTPASS;
break;
case VPX_RC_LAST_PASS:
oxcf->Mode = MODE_SECONDPASS_BEST;
oxcf->mode = MODE_SECONDPASS_BEST;
break;
}
@ -351,7 +351,7 @@ static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf,
printf("noise_sensitivity: %d\n", oxcf->noise_sensitivity);
printf("Sharpness: %d\n", oxcf->Sharpness);
printf("cpu_used: %d\n", oxcf->cpu_used);
printf("Mode: %d\n", oxcf->Mode);
printf("Mode: %d\n", oxcf->mode);
// printf("delete_first_pass_file: %d\n", oxcf->delete_first_pass_file);
printf("auto_key: %d\n", oxcf->auto_key);
printf("key_freq: %d\n", oxcf->key_freq);
@ -577,8 +577,8 @@ static void pick_quickcompress_mode(vpx_codec_alg_priv_t *ctx,
? MODE_SECONDPASS_BEST
: MODE_SECONDPASS;
if (ctx->oxcf.Mode != new_qc) {
ctx->oxcf.Mode = new_qc;
if (ctx->oxcf.mode != new_qc) {
ctx->oxcf.mode = new_qc;
vp9_change_config(ctx->cpi, &ctx->oxcf);
}
}