summaryrefslogtreecommitdiff
path: root/recordmydesktop/src/rmd_yuv_utils.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-07-09 20:58:46 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-07-11 13:36:41 -0700
commit362d4378b65a332b6474d269ced364f42342944b (patch)
treeec9e524cfb52c62bcc40b7feff645bd17eb26b17 /recordmydesktop/src/rmd_yuv_utils.h
parent00e766870b5fe749242aab2b452ab9220700bf47 (diff)
yuv_utils: shrink [yuv]blocks to unsigned char[]
No idea why this had such a large type, its members just hold 0 or 1.
Diffstat (limited to 'recordmydesktop/src/rmd_yuv_utils.h')
-rw-r--r--recordmydesktop/src/rmd_yuv_utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/recordmydesktop/src/rmd_yuv_utils.h b/recordmydesktop/src/rmd_yuv_utils.h
index 36070b6..f92471a 100644
--- a/recordmydesktop/src/rmd_yuv_utils.h
+++ b/recordmydesktop/src/rmd_yuv_utils.h
@@ -39,9 +39,9 @@ extern unsigned char Yr[256], Yg[256], Yb[256],
// We keep these global for now. FIXME: Isolate them.
-extern u_int32_t *yblocks, /* XXX FIXME why is this u_int32_t when it seems to be simple bool flags? */
- *ublocks,
- *vblocks;
+extern unsigned char *yblocks,
+ *ublocks,
+ *vblocks;
/**
© All Rights Reserved