]> granicus.if.org Git - libvpx/commitdiff
Renaming 'Mode' to 'mode'.
authorDmitry Kovalev <dkovalev@google.com>
Wed, 8 Jan 2014 22:33:59 +0000 (14:33 -0800)
committerDmitry Kovalev <dkovalev@google.com>
Wed, 8 Jan 2014 22:33:59 +0000 (14:33 -0800)
Change-Id: I6cdd670d66288dbd66228f38bba6b30502d25362

vp9/common/vp9_onyx.h
vp9/encoder/vp9_onyx_if.c
vp9/vp9_cx_iface.c

index be8fedc478a9989f7184ea46466fc77b4d94386d..6a920f0c5d752f5b48eec045e707ac4f5d56b879 100644 (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
index 2cdf45d3fb3a25ff500776aa3dcbb54bb14d26a7..cc642fb77c796af11142d08237f10d666d5c47b1 100644 (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;
index 5bd9bf1bdd4684b2953dff1e4205a2236d463981..da5f7eea53002427f18a27c6b397bfbd8c130ad2 100644 (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);
   }
 }