From: John Koleszar Date: Wed, 17 Nov 2010 14:23:52 +0000 (-0500) Subject: vp8_set_maps: remove hard-coded width/height X-Git-Tag: v0.9.6~165^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ee516d2b37d8eac62604e09ded9158955c7a65a;p=libvpx 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 --- diff --git a/examples/vp8_set_maps.txt b/examples/vp8_set_maps.txt index 94554bac0..ad9ef61c5 100644 --- a/examples/vp8_set_maps.txt +++ b/examples/vp8_set_maps.txt @@ -78,8 +78,8 @@ if(frame_cnt + 1 == 22) { } else if(frame_cnt + 1 == 44) { vpx_active_map_t active; - active.rows = 240/16; - active.cols = 320/16; + active.rows = cfg.g_h/16; + active.cols = cfg.g_w/16; /* pass in null map to disable active_map*/ active.active_map = NULL;