summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2012-06-20 15:20:53 +0100
committerPaul Wilkins <paulwilkins@google.com>2012-06-23 16:33:30 +0100
commita87fb0da5bbe6c7367f8364934b414466625a96f (patch)
tree0c20b5c697597b43effee557d70819d6db9be8ea
parent3cecdd683e34527eac912fb3005e13ee1be8deaa (diff)
downloadlibvpx-a87fb0da5bbe6c7367f8364934b414466625a96f.tar
libvpx-a87fb0da5bbe6c7367f8364934b414466625a96f.tar.gz
libvpx-a87fb0da5bbe6c7367f8364934b414466625a96f.tar.bz2
libvpx-a87fb0da5bbe6c7367f8364934b414466625a96f.zip
Alter comment on range of delta_q and delta_lf
Update the comment that defines the allowed ranges for delta_q and delta_lf that can be used with segmentation. Change-Id: Ie56ad6f946704259e03ffd49921a4cfb7e1e2f1f
-rw-r--r--vpx/vp8cx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index 0af631c3a..f8779387c 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -204,8 +204,8 @@ typedef struct vpx_roi_map
unsigned char *roi_map; /**< specify an id between 0 and 3 for each 16x16 region within a frame */
unsigned int rows; /**< number of rows */
unsigned int cols; /**< number of cols */
- int delta_q[4]; /**< quantizer delta [-64, 64] off baseline for regions with id between 0 and 3*/
- int delta_lf[4]; /**< loop filter strength delta [-32, 32] for regions with id between 0 and 3 */
+ int delta_q[4]; /**< quantizer delta [-63, 63] off baseline for regions with id between 0 and 3*/
+ int delta_lf[4]; /**< loop filter strength delta [-63, 63] for regions with id between 0 and 3 */
unsigned int static_threshold[4];/**< threshold for region to be treated as static */
} vpx_roi_map_t;