Commit 7ee516d2 authored by John Koleszar's avatar John Koleszar
Browse files

vp8_set_maps: remove hard-coded width/height

The example for disabling the active map used a hard-coded 320x240
resolution, rather than using what was passed on the command line.

Fixes #218

Change-Id: I3aed713e8aa7fcbf18dfbffd57f142b5cd9ee492
Showing with 2 additions and 2 deletions
...@@ -78,8 +78,8 @@ if(frame_cnt + 1 == 22) { ...@@ -78,8 +78,8 @@ if(frame_cnt + 1 == 22) {
} else if(frame_cnt + 1 == 44) { } else if(frame_cnt + 1 == 44) {
vpx_active_map_t active; vpx_active_map_t active;
active.rows = 240/16; active.rows = cfg.g_h/16;
active.cols = 320/16; active.cols = cfg.g_w/16;
/* pass in null map to disable active_map*/ /* pass in null map to disable active_map*/
active.active_map = NULL; active.active_map = NULL;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment